Forum Moderators: not2easy
I have some text in span tag, in browser it shows like:
You may now proceed to edit your Profile in order to fill in additional personal
details about yourself, or you could modify your Options to customize your
browsing experience of this site. If you would rather do these things later,
you can do so by following the links around the site to your User Control
Panel.
but I need add some style to show it like:
You may now proceed to edit your Profile in order to fill in additional personal
[spaces here] details about yourself, or you could modify your Options to customize your
[spaces here] browsing experience of this site. If you would rather do these things later,
[spaces here] you can do so by following the links around the site to your User Control
[spaces here] Panel.
So, all text should be in one span, first line of text shoulb be in left but all next lines should have an intend (replace [spaces here] with spaces (intend)) ?
Thank you!
e.g.:
p {
text-indent: -3em;
margin-left: 3em;
}
In CSS3 this is likely to become easier with the introduction of something like
"text-indent: 3em hanging;", but that's for the future browsers.