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.
span12
I would like to center the di
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!