Skip to content

Instantly share code, notes, and snippets.

@soal
Created November 26, 2012 22:45
Show Gist options
  • Save soal/4151166 to your computer and use it in GitHub Desktop.
Save soal/4151166 to your computer and use it in GitHub Desktop.
HTML elements justify
<div id="wrapper">
<div class="elem"></div>
<div class="elem"></div>
<div class="elem"></div>
</div>
#wrapper:after {
content: "1";
margin-left: 100%;
height: 1px;
overflow: hidden;
display: inline-block;
/*inline-block fix for IE 6-7*/
*display: inline-block;
*zoom: 1;
}
.elem {
display: inline-block;
/*inline-block fix for IE 6-7*/
*display: inline-block;
*zoom: 1;
}
/* Cure for IE6-7*/
#wrapper {
text-justify: newspaper;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment