BroFox86
2/28/2017 - 5:30 AM

[Responsive square] #css

[Responsive square] #css

.square {
  position: relative;
  width: 50%;
  background-color: red;   
}
          
.square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
  word-wrap: break-word;
}