Adding to Bootstrap container -
i'm using bootstrap , trying add div class .curtain above main .container class wider .container. approach accomplishing that?
<div class="container curtain"></div> <div class=" container"> ... </div>
the simplest way can think of without knowing more detail question add following css:
.curtain{ width:110%; }
Comments
Post a Comment