1 Star 1 Fork 5

lv_xx/gao-web_1

forked from shuiruohanyu/gao-web 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
21_postion定位.html 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
shuiruohanyu 提交于 2024-12-08 11:12 . 21_postion定位
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>21_postion定位</title>
<link rel="stylesheet" href="./css/basic.css">
<style>
.container {
width: 200px;
height: 200px;
background-color: pink;
position: relative;
margin: 10px 10px;
}
.item, .item_2, .item_3, .item_4, .item_5 {
width: 50px;
height: 50px;
background-color: blue;
position: absolute;
}
.item_2 {
background-color: brown;
right: 0
}
.item_3 {
background-color: black;
bottom: 0;
}
.item_4 {
background-color: black;
bottom: 0;
right: 0
}
.item_5 {
background-color: burlywood;
left: 50%;
top: 50%;
transform: translate(-25px,-25px);
}
</style>
</head>
<body>
<div class="container">
<div class="item"></div>
<div class="item_2"></div>
<div class="item_3"></div>
<div class="item_4"></div>
<div class="item_5"></div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lv_xx/gao-web_1.git
git@gitee.com:lv_xx/gao-web_1.git
lv_xx
gao-web_1
gao-web_1
main

搜索帮助