Add padding without changing overall width

后端 未结 4 998
一整个雨季
一整个雨季 2021-01-04 03:05

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

4条回答
  •  心在旅途
    2021-01-04 03:47

    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+ */
    }
    

提交回复
热议问题