Twitter bootstrap - how to skip a line?

What is the correct way to skip a line? So my image from the top line does not stick to the menu in the line below? (i.e. there should be a space between the lines)

At the moment I am doing:

 <div class="row"> 
 <div class="span12"> </br></div>
 </div>

This seems to be acceptable since I don't violate the css template in any way, but I am wondering how people do it in the usual way.

(I use 12 column patterns)

+5
source share
1 answer

It is generally recommended to classify the style or layout of the page and the contents of the page. Decorations should be CSS enabled, and content should be HTML enabled.

A line break is considered content, so it is not recommended to use a line break as a style for the page.

I assume you want something like this.

.row {
  padding-top: 20px;
}

20px row div.

+6

All Articles