When to use HTML Break Element ?

Well like other’s i had been using the when ever i could thinking that since its an html element its okay to use it. Well its not. So STOP using it.
The use of the Break Element () is only to break lines between text in paragraphs. Using it to add padding between elements was one of the ways i used it for. Use instead as many number of times you want instead of the break element.
Another place where we tend to use is in a vertical Menu for places each link on a different line. The right way of addressing this is by using unordered list (

    ) and list items (
  • ).
    In case you really need that extra spacing use div’s with properties like margin and padding. Let CSS do the magic!
    Hope to see you guys implement this hence forth!