Shubham Tikare
Shubham Tikare

Reputation: 79

Text align center with justify

enter image description here

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

Answers (3)

snippster
snippster

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

imGaurav
imGaurav

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

Manish Kothari
Manish Kothari

Reputation: 1712

you can try this:

.center-justified {
text-align: justify;
-moz-text-align-last: center;
text-align-last: center;
}

Upvotes: 12

Related Questions