In my project paragraph (in p tag) i have give text-align:justify; but in some words there more space comes so for this solution i try: HTML code:
<p>What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
CSS code:
p{
text-align:justify;
word-break: break-all;
hyphens: auto;
}
but in this code mozilla works but not work in chrome,for this i try
p{
text-align:justify;
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
below css there -webkit- is used for chrome right but still not working please help, please give the solutions......