How can I add padding to an element without adding on top of the predefined width?
It\'s good to define the width of a column to make a clean grid for the layout; bu
element { -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; /* Opera/IE 8+ */ }