Answers for "aligement box responsive css"

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

Browse Popular Code Answers by Language