How Can Align Text In A Center In Left Position?
I have this sample: http://jsfiddle.net/3gmeK/298/ CSS and HTML:  I want my text in its current form is aligned in the center. I do not want to use 'text-align: center;' Inside thi
Solution 1:
This can be done by adding an extra span around the text:
- Add 
text-align: center;top - Add an extra 
spanaround the text - Add a new 
spanselector withdisplay: inline-block;to make thespancenter in relation to thepandtext-align: left;to shift it's text to the left 
div {
  background-color: #F51;
  padding: 10px20px;
}
p {
  background-color: #333;
  color: #fefefe;
  padding: 5px;
  text-align: center;
}
span {
  display: inline-block;
  text-align: left;
}<div><p><span>There are many fish in the sea! So lovely!<br>
            many fish in the sea! So lovely!</span></p></div>
Post a Comment for "How Can Align Text In A Center In Left Position?"