How to use border with Bootstrap

后端 未结 9 764
独厮守ぢ
独厮守ぢ 2020-12-23 15:53

How can I solve this problem? When you add borders to a div, the div is not centered and the span12 class is not centered.

I would like to center the di

9条回答
  •  遥遥无期
    2020-12-23 16:21

    What others have mentioned about border vs border box is definitely correct. You can still get this to work without having to create any custom classes though: http://jsfiddle.net/panchroma/yfzdD/

    HTML

    1
    2
    3

    CSS

    .span12{
    border:solid 2px black;
    background-color:grey;  
    }  
    

    Good luck!

提交回复
热议问题