Reputation: 59
I'm trying to do something like this:
As you can see the text is justify but the last line is centered. I tried with this css approach but it doesn't center the last line. At least not in chrome:
p {
text-align: justify;
-moz-text-align-last: right; /* Code for Firefox */
text-align-last: center;
}
Here it says it should work, but it doesn't: http://www.w3schools.com/cssref/css3_pr_text-align-last.asp
Any idea how to achieve it?
Upvotes: 3
Views: 3613
Reputation: 2004
Change right
to center
:
p {
text-align: justify;
-moz-text-align-last: center; /* Code for Firefox */
text-align-last: center;
}
Upvotes: 8