1 Star 0 Fork 0

强晓晖/example-css

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
box-sizing.html 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
强晓晖 提交于 2024-04-21 08:32 . 保存
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
#box1{
width:200px;
height:200px;
background-color:red;
padding:50px;
box-sizing:content-box;/* 默认值 padding 和 border不被计算在 width内 */
margin:50px;
border:25px solid yellow;
}
#box2{
width:200px;
height:200px;
background-color:blue;
margin:50px;
box-sizing:border-box;/* padding 和 border 被计算在 width内 */
padding:50px;
border:25px solid yellow;
}
</style>
</head>
<body>
<div id="box1">
内容1
</div>
<div id="box2">
内容2
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
CSS
1
https://gitee.com/ruik2080/example-css.git
git@gitee.com:ruik2080/example-css.git
ruik2080
example-css
example-css
master

搜索帮助