Answers for "how to make small responsive box"

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 "how to make small responsive box"

Browse Popular Code Answers by Language