html - Use CSS to put img attributes -
can use css programmatic put attributes of img tag?
<span><img class="img-dollar"></img></span> <span><img class="img-royalty"></img></span>
i want put src image , put height , width scale down. how can achieve?
the answer no. can't manipulate html tags of css. use javascript that.
css used manipulate style attributes.
to change height , width property using css can this
.img-dollar { height:100px; width: 100px }
Comments
Post a Comment