Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS i listed 20 pieces of information with the tag separating them. HOW DO I… Reply To: i listed 20 pieces of information with the tag separating them. HOW DO I…

#257238
Paulie_D
Member

I am breaking each show from the next by using the <br> tag(BREAK TAG).

Well this is the problem…

These are separate items so they should each be in their own element…probably a paragraph tag. Then you can use margin or padding.

Frankly though…this looks like a list…why not use one?

Using break tags is not appropriate here…

The HTML <br> element produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.

Do not use <br> to increase the gap between lines of text; use the CSS margin property or the <p> element.

MDN