Answers for "scale down image in css"

CSS
0

css img scale-down

/*for scaling down  */
img {
  max-height: 70px;
  max-width: 70px;
  object-fit: scale-down;
}
Posted by: Guest on June-03-2021
1

scale down image css

img.resize {
    width: 540px; /* you can use % */
    height: auto;
}
Posted by: Guest on January-29-2021

Browse Popular Code Answers by Language