css - Is the following Bootstrap html structure acceptable -
i want know if there problem if following using bootstrap 3 html structure?
after reading documentation , examples of them recommend doing following structure
<div class="row"> <div class="col-lg-4" ></div> <div class="col-lg-4" ></div> <div class="col-lg-4" ></div> </div>
but using angular in our application , sizes of each panel change , each panel have it's own controller knows when expand or not. thought controller or state manager don't know @ moment final ui definitions.
so question is problem following structure?
<div class="row"> <div> <div class="col-lg-4" ></div> </div> <div> <div class="col-lg-4" ></div> </div> <div> <div class="col-lg-4" ></div> </div> </div>
that structure fine. there mistake in class names. should 'col-lg-4'.
it may pay use other col-- classes handle happens on smaller devices/screen sizes
edit: after re-reading question see won't have fixed sizes. perhaps consider implementing function assign different sizes different elements.
e.g.
<div class="row"> <div id="one"></div> <div id="two"></div> <div id="three"></div> </div>
now can reference divs different id's , this:
//if want large middle column 2 smaller columns on side $('#one).addclass('col-lg-2'); $('#two').addclass('col-lg-8'); $('#three).addclass('col-lg-2');
note: i'm using jquery that.
Comments
Post a Comment