I am having a difficult time trying to find a way to insert a one-time tab inside a <div> box, without having to create yet another style in my stylesheet.
I have a div box and inside the box is text in a special style. Normally, all text lines begin at the left margin but text line 2 needs to be slightly indented:
Code: Select all
<div class="figure" style="width: 620px;height: auto;text-align: left;">
<br style="color: #696969;mc-tag-and-class: cite;" /><cite class="sw_typing" style="color: #696969;">text line 1</cite>
<br style="color: #696969;mc-tag-and-class: cite;" /><cite class="sw_typing" style="color: #696969; padding-left: 10em;">text line 2</cite>
<br style="color: #696969;mc-tag-and-class: cite; ; text-indent: 20px;" /><cite class="sw_typing" style="color: #696969;">text line 2</cite>
Any suggestions?
Thanks so much!