html - What is the correct way to use grids? -


i have started learn bootstrap. , first time have ever used grids layout. don't understand grids should put content.

should this:

<div class="row">     <div class="col-md-12">         <p> content </p>     </div> </div> 

or should use parent element content this

<div class="row">     <div class="col-md-12">         <div> or <footer> or <aside> or <content> etc             <p> content </p>         </div> or </footer> or </aside> or </content> etc     </div> </div> 

if answer second. there ever reason okay put content directly column? or have misunderstod , should done in completly other way?

what "best practice"?

the best way this:

<div class="container">  <div class="row">     <div class="col-md-12">        <div class="your-widget-name">          widget code here…        <div>    </div> </div> 

this way, widgets can used across multiple layouts. using separate divs grid can increase amount of markup, make code easier maintain.


Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -