Answers for "make box responsive"

CSS
1

how to make a responsive box in css

.square {
  width: 50%;
}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
Posted by: Guest on October-23-2020

Code answers related to "make box responsive"

Browse Popular Code Answers by Language