Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Using html tags, how does one insert a tab (indent)?
For example, I want to put the following lines
Format: 4!c
Example: COMM
but I want the 4!c and COMM to line up.
Right now I use the following html to make a list
<ul><li>Foramt: 4!c<li>Example: COMM</ul>
3 Answers
- HumzaLv 51 decade agoFavorite Answer
I am still learning but this maybe the long way round
as many times as you want the break space to be.
If that makes sense
sorry lol
& n b s p ;
miuns the spaces
<ul><li>Format: 4!c& n b s p ; _____Example: COMM</li></ul>
- shadowLv 51 decade ago
There is a CSS property, called 'text-indent' which accepts positive and negative pixel values.
Just adjust the value until you like the result:
<p style=" text-indent:10px; ">
Format: 4!c<br>
Example: COMM
</p>
- fjpoblamLv 71 decade ago
<div style="display; block; width: 15em;">
<div style="width: 9em; float: left;">
<ul style="list-style-type: none;">
<li>Format:</li>
<li>Example</li>
</ul>
</div>
<div style="width: 5em; float:left;">
<ul style="list-style-type: none;">
<li>4!c</li>
<li>COMM</li>
</ul>
</div>
</div>