1 Star 0 Fork 0

癫疯丶歌谣/前端牛客网面试题刷题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
盒模型介绍220402.html 793 Bytes
一键复制 编辑 原始数据 按行查看 历史
yaojian01_ext 提交于 2022-04-04 10:47 . 修改
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>盒子模型</title>
</head>
<body>
<!-- 两种盒子模型都是由 content + padding + border + margin
构成,其大小都是由 content + padding + border
决定的,但是盒子内容宽/高度(即
width/height)的计算范围根据盒模型的不同会有所不同: 标准盒模型:只包含
content 。 IE(替代)盒模型:content + padding + border 。 可以通过
box-sizing 来改变元素的盒模型: box-sizing: content-box
:标准盒模型(默认值)。 box-sizing: border-box :IE(替代)盒模型。 -->
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/geyaoisgeyao/geyao.git
git@gitee.com:geyaoisgeyao/geyao.git
geyaoisgeyao
geyao
前端牛客网面试题刷题
master

搜索帮助