Answers for "reduce the image size in css"

CSS
8

css change image width

/*Search Term: "CSS change image width"*/

img {
  width: /*Add width here*/;
}

/*Example*/
img {
  width: 200px;
}
Posted by: Guest on October-12-2020
0

CSS shrink image

<div style="width: 200px; height: 200px;">
<img src="imagenimagen1.jpg" style="width: 100px; height: 100px;"/>
</div>
Posted by: Guest on September-10-2020

Browse Popular Code Answers by Language