定位属性(Html基础)10
程序员文章站
2022-04-25 11:17:31
...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Html基础</title>
<style>
#max{
width: 600px;
height: 2000px;
background-color: aqua;
border: 1px black solid;
margin: 0 auto;
/* 不设置偏移给下级当 '指挥棍' 下级设置absolute偏移以此为准 */
/* position: relative; */
}
#div1{
width: 200px;
height: 200px;
background-color: red;
border: 1px black solid;
/* 上一级位置基础下定位 */
/* position: relative;
left: 100px;
top: 200px; */
/* 根据网页显示内容处定位 */
position: absolute;
left: 100px;
top: 200px;
/* 根据浏览器窗口来定位 */
/* position: fixed;
left: 50px;
top: 30px; */
}
</style>
</head>
<body>
<div id="max">
<div id="div1">
</div>
</div>
</body>
</html>
下一篇: CSS 外边距
推荐阅读
-
HTML表格属性有哪些?HTML表格10种基本属性的总结
-
div+CSS绝对定位absolute属性_html/css_WEB-ITnose
-
CSS定位属性position_html/css_WEB-ITnose
-
HTML5基础-新增标签+新增属性+布局案例
-
#WEB安全基础 : HTML/CSS | 0x10实现交互_表单
-
HTML5基础-新增标签+新增属性+布局案例
-
HTML连载62-固定定位练习、z-index属性
-
【WEB基础】HTML & CSS 基础入门(10)布局与定位
-
#WEB安全基础 : HTML/CSS | 0x5a标签拓展和class、id属性的使用
-
背水一战 Windows 10 (78) - 自定义控件: 基础知识, 依赖属性, 附加属性