English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have a bulleted list in my html code that is squished too tightly. I want to add a small amount of space between the line but not as much as a line a paragraph

and the use of
is inappropriate.

I have found the tag but I haven't found it to do anything, so please direct me EXACTLY how to use it! Thank you Thank you!

2007-05-25 04:17:08 · 9 answers · asked by Anonymous in Computers & Internet Programming & Design

No CSS please. Site is completely formatted- I am looking for code- specifically perhaps how to use the tag correctly.

2007-05-25 04:22:10 · update #1

9 answers

Here's the basic:



Horizontal/ vertical, height, width, and alignment are adjustable

2007-05-25 04:53:07 · answer #1 · answered by rod 6 · 0 0

Line Space In Html

2017-01-02 10:04:12 · answer #2 · answered by ? 4 · 0 0

This Site Might Help You.

RE:
How do I create a space between lines in HTML code? I do not want to use <p> or <BR>.?
I have a bulleted list in my html code that is squished too tightly. I want to add a small amount of space between the line but not as much as a line a paragraph <p> and the use of <br> is inappropriate.

I have found the tag <spacer> but I haven't found it to do anything,...

2015-08-06 07:29:42 · answer #3 · answered by Anonymous · 0 0

One of the simplest ways of doing it would be to utilize some CSS (cascading style sheets) code around your bulleted list items. You can do this in your inline code and not have to worry about importing any stylesheets.

This is how I would do it:

  • List Item Here


  • You could also apply the style="" attribute inside your
  • tag and eliminate the need for a div.

    To reduce the amount of work needed you could simply apply this type of CSS into what's called a Class and then just apply the class="classname" attribute into your tag so that you could eliminate applying the same style over and over again.

    Here is a resource for a complete specification and tutorials on how to use CSS to make your webpages much more dynamic when it comes to presentation: http://www.w3.org/Style/CSS/

    2007-05-25 04:23:04 · answer #4 · answered by truextremeicon 3 · 1 0

  • Use css to make the line height for that element to be larger than it already is. Something like:
    li { line-height: 125%; } in a style sheet,
    or alternatively

  • directly in each of the lis in your html page

    2007-05-25 04:20:48 · answer #5 · answered by firstythirsty 5 · 0 0

    Use CSS! In the section place:


    Play with 5px (use 6px or 7px or 8px or 9px or whatever) until you get the amount of space you want...

    2007-05-25 05:00:23 · answer #6 · answered by fjpoblam 7 · 0 0

    I think CSS would be your best bet, but since your additional details say you're avoiding CSS and you're looking for the Spacer Tag specifically, I did a quick search on Google for you with the following keywords: +html +spacer +tag and tons of results were returned. The page sited in the source seems to be a good reference chart and you should be able to use it to figure out how to implement your spacer tag appropriately.

    2007-05-25 04:31:22 · answer #7 · answered by Becca 4 · 0 0

    Read up on Cascading Style Sheets (CSS). There is much more flexibility in formatting your text, and aspects such as line spacing can be altered relatively easily.

    2007-05-25 04:20:29 · answer #8 · answered by Anonymous · 0 0

    & nbsp; [no space]

    2007-05-25 04:20:24 · answer #9 · answered by helpdesk916 ♦♣♠♥ 6 · 2 0

    fedest.com, questions and answers