Skip to content

Instantly share code, notes, and snippets.

@kodired
Created June 18, 2016 23:05
Show Gist options
  • Save kodired/5f0e209e8d76d9d297725c5f87f38673 to your computer and use it in GitHub Desktop.
Save kodired/5f0e209e8d76d9d297725c5f87f38673 to your computer and use it in GitHub Desktop.
Выравнивание блоков на всю ширину

##Выравнивание блоков на всю ширину ####HTML

<div class="block">
	<div class="block__itm"></div>
	<div class="block__itm"></div>
	<div class="block__itm"></div>
</div>

####SCSS

.block__itm {
	display: inline-block; 
}
.block {
	text-align: justify;
	&:after {
		content: '';
		display: inline-block;
		width: 100%;
		height: 0px;
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment