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

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -