Reputation: 79
I want to align center property with justify for text/content. Can Anyone of you help me. With all browsers compatibility except IE versions
see the screen for understanding. Want it justify only with text center...
Upvotes: 3
Views: 8543
Reputation: 118
You can try this
html:
<div class="center-justified"></div>
css:
.center-justified {
text-align: justify;
-moz-text-align-last: center;
text-align-last: center;
}
Live demo: http://jsfiddle.net/L4pzm/336/
Upvotes: 2
Reputation: 1053
.justified-center {
text-align: justify;
margin: 0 auto;
width: 500px;
}
<div class="justified-center">...lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots
and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots of text......lots and lots
of text...</div>
Upvotes: 1
Reputation: 1712
you can try this:
.center-justified {
text-align: justify;
-moz-text-align-last: center;
text-align-last: center;
}
Upvotes: 12