Answers for "automatically adjust images css mobile"

CSS
-1

reduce image size on mobile view css

.container {
  width: 50%;
  height: 200px;
  overflow: hidden;
}

.container img {
  max-width: 100%;
  height: auto;
  display: block;
}
Posted by: Guest on May-03-2020

Code answers related to "automatically adjust images css mobile"

Browse Popular Code Answers by Language