Answers for "css change size on mobile"

CSS
8

css mobile scale down

<meta name="viewport" content="width=device-width, initial-scale=1">
Posted by: Guest on February-08-2020
-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

Browse Popular Code Answers by Language