Z31o_0
7/17/2019 - 3:19 AM

Create responsive square

<div class="square">
	<span>Lorem ipsum</span>
</div>
.square {
	width: 100%;
	
	&.option_1 {
		height: 0;
		padding-bottom: 100%;
	}
	
	&.option_2 {
		position: relative;
		
		&:after {
		    content: "";
		    display: block;
		    padding-bottom: 100%;
		}
		
		.content {
			position: absolute;
		    height: 100%;
		    width: 100%;
		}
	}
}