1.square {
2 width: 50%;
3}
4
5.square:after {
6 content: "";
7 display: block;
8 padding-bottom: 100%;
9}
1<!-- HTML -->
2<div class='square-box'>
3 <div class='square-content'>
4 <h3>test</h3>
5 </div>
6</div>
7
8<!-- CSS -->
9<style>
10.square-box{
11 position: relative;
12 width: 50%;
13 overflow: hidden;
14 background: #4679BD;
15}
16.square-box:before{
17 content: "";
18 display: block;
19 padding-top: 100%;
20}
21.square-content{
22 position: absolute;
23 top: 0;
24 left: 0;
25 bottom: 0;
26 right: 0;
27 color: white;
28 text-align: center;
29}
30</style>