3 Star 18 Fork 7

杨得朝/web-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
01-03 水平居中布局的第三种解决方案.html 996 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨得朝 提交于 2020-06-12 18:02 . 页面布局提交
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>水平居中布局的第三种解决方案</title>
<style>
#parent {
width: 100%;
height: 200px;
background: #ccc;
/* 开启定位 */
position: relative;
}
#child {
width: 300px;
height: 200px;
background: #c9394a;
/*
当把当前元素设置为绝对定位之后:
* 如果父级元素没有开启定位的话,当前元素是相对于页面定位的
* 如果父级元素开启了定位的话,当前元素是相对于父级元素定位的
*/
position: absolute;
left: 50%;
transform: translateX(-50%);
}
</style>
</head>
<body>
<!-- 定义父级元素 -->
<div id="parent">
<!-- 定义子级元素 -->
<div id="child"></div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/yangdechao_admin/web-test.git
git@gitee.com:yangdechao_admin/web-test.git
yangdechao_admin
web-test
web-test
master

搜索帮助