Full width layout with twitter bootstrap

前端 未结 10 571
不知归路
不知归路 2021-01-29 19:37

I\'m trying to accomplish a layout similar to this one: http://dribbble.com/shots/829195-Slate/attachments/86422

My project uses Twitter Bootstrap with responsive desig

10条回答
  •  滥情空心
    2021-01-29 19:57

    Just create another class and add along with the bootstrap container class. You can also use container-fluid though.

    ....

    The CSS part is pretty simple

    * {
        margin: 0;
        padding: 0;
    }
    .full-width {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    

    Hope this helps, Thanks!

提交回复
热议问题