关于css中的box-sizing:border-box

来源:互联网 发布:2017淘宝现在还能刷吗 编辑:程序博客网 时间:2024/06/07 10:06

box-sizing: border-box 会直接将border 和padding 放到盒子里面。

<!DOCTYPE html><html><head>    <title></title>    <style type="text/css">        div{            border: 1px solid #f00;            width: 300px;            height: 300px;            padding: 0 15px;            box-sizing: border-box;        }    </style></head><body>    <div></div></body></html>
原创粉丝点击