Answers for "small size for image css"

CSS
0

make an image smaller css

css:
.example-class {
    width: 400px;
    height: auto;
}

html:
<img class="example-class" src="example.jpg"/>
Posted by: Guest on March-20-2021
0

css display original image in smalle width

img.resize {
  width:200px;
  height:40px;
}
Posted by: Guest on April-10-2021

Browse Popular Code Answers by Language