How to use border with Bootstrap

后端 未结 9 760
独厮守ぢ
独厮守ぢ 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:43

    Unfortunately, that's what borders do, they're counted as part of the space an element takes up. Allow me to introduce border's less commonly known cousin: outline. It is virtually identical to border. Only difference is that it behaves more like box-shadow in that it doesn't take up space in your layout and it has to be on all 4 sides of the element.

    http://codepen.io/cimmanon/pen/wyktr

    .foo {
        outline: 1px solid orange;
    }
    

提交回复
热议问题