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.

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

Relevance
  • Humza
    Lv 5
    1 decade ago
    Favorite 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>

  • shadow
    Lv 5
    1 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>

  • 1 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>

Still have questions? Get your answers by asking now.