定位:
·
position 属性 | 说明 |
---|---|
static | 默认值,没有定位 |
relative | 相对定位 |
absolute | 绝对定位 |
fixed | 固定定位 |
、
·
标准文档流
标准文档流是指页面上从上到下, 从左到右, 网页元素一个挨一个的简单的正常的布局方式。
一般在 HTML 元素分为两种:块级元素和行内元素。
块级元素:
块级元素是从上到下一行一行的排列,默认一个块级元素会占用一行,而跟在后面的元素会另起一行排列。
像 div,p 这些的元素属于块级元素。
行内元素:
行内元素是在一行中水平布置,从左到右的排列 。span,strong 等属于行内元素
static 定位
position:static
复制代码
元素没有定位,以标准流方式显示
样例代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>position属性</title>
<style>
div {
width: 300px;
margin:10px;
padding:5px;
font-size:12px;
line-height:25px;
}
#father {
width: 500px;
margin: 50px auto;
border:1px #666 solid;
padding:10px;
}
#first {
background-color:#FC9;
border:1px #B55A00 dashed;
}
#second {
background-color:#CCF;
border:1px #0000A8 dashed;
}
#third {
background-color:#C5DECC;
border:1px #395E4F dashed;
}
</style>
</head>
<body>
<div>
<div>第一个盒子</div>
<div>第二个盒子</div>
<div>第三个盒子</div>
</div>
</body>
</html>
复制代码
效果截图:
相对定位
relative 属性值
相对定位就是相对自身原来位置进行偏移
偏移设置:top、left、right、bottom。
可以用 left 来描述盒子向右移动
可以用 right 来描述盒子向左的移动
可以用 top 来描述盒子向下的移动
可以用 bottom 来描述 盒子的向上的移动
如果是负数就是相反的方向
例如:left:10px 就是距离左边 10px(也就是往右移动 10px)
相对定位的盒子,不脱离标准流,老家保留位置,其后的元素不能占用其原有位置。
相对定位的主要用途是作为其内部元素绝对定位时的参照标准,相对于 “我” 而言。
样例代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>relative属性</title>
<style>
div {
width: 300px;
margin:10px;
padding:5px;
font-size:12px;
line-height:25px;
}
#father {
width: 500px;
margin: 50px auto;
border:1px #666 solid;
padding:10px;
}
#first {
background-color:#FC9;
border:1px #B55A00 dashed;
position:relative;
top:10px;
left:150px;
}
#second {
background-color:#CCF;
border:1px #0000A8 dashed;
}
#third {
background-color:#C5DECC;
border:1px #395E4F dashed;
}
</style>
</head>
<body>
<div>
<div>第一个盒子</div>
<div>第二个盒子</div>
<div>第三个盒子</div>
</div>
</body>
</html>
复制代码
效果截图:
绝对定位
absolute 属性值
偏移设置: left、right、top、bottom。
使用了绝对定位的元素以它最近的一个 “已经定位” 的“== 祖先元素” 为基准进行偏移。如果没有已经定位的祖先元素,那么会以浏览器窗口为基准进行定位。绝对定位的元素从标准文档流中脱离,其后的元素会占据其原有的位置。
样例代码 1:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>absolute属性</title>
<style>
div {
width: 300px;
margin:10px;
padding:5px;
font-size:12px;
line-height:25px;
}
#father {
width: 500px;
margin: 50px auto;
border:1px #666 solid;
padding:10px;
}
#first {
background-color:#FC9;
border:1px #B55A00 dashed;
position: absolute;
top:10px;
right: 10px;
}
#second {
background-color:#CCF;
border:1px #0000A8 dashed;
}
#third {
background-color:#C5DECC;
border:1px #395E4F dashed;
}
</style>
</head>
<body>
<div>
<div>第一个盒子</div>
<div>第二个盒子</div>
<div>第三个盒子</div>
</div>
</body>
</html>
复制代码
效果截图 1:
样例代码 2:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>absolute属性</title>
<style>
div {
width: 300px;
margin:10px;
padding:5px;
font-size:12px;
line-height:25px;
}
#father {
width: 500px;
margin: 50px auto;
border:1px #666 solid;
padding:10px;
position: relative;
}
#first {
background-color:#FC9;
border:1px #B55A00 dashed;
position: absolute;
top:10px;
right: 10px;
}
#second {
background-color:#CCF;
border:1px #0000A8 dashed;
}
#third {
background-color:#C5DECC;
border:1px #395E4F dashed;
}
</style>
</head>
<body>
<div>
<div>第一个盒子</div>
<div>第二个盒子</div>
<div>第三个盒子</div>
</div>
</body>
</html>
复制代码
效果截图 2:
固定定位
固定定位,就是始终让一个元素固定在一个位置,不管怎么滚动页面,那个固定的元素也不会改变位置。
position: fixed;
复制代码
fixed 属性值
偏移设置: left、right、top、bottom。
样例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
.d1 {
position: fixed;
width: 100px;
height: 100px;
left: 50%;
background-color: #666666;
}
</style>
<title></title>
</head>
<body>
<div>这是个固定在中间位置的div块</div>
<p>Keafmd</p>
<p>这是一句话1</p>
<p>这是一句话2</p>
<p>这是一句话3</p>
<p>这是一句话4</p>
<p>这是一句话5</p>
<p>这是一句话6</p>
<p>这是一句话7</p>
<p>这是一句话8</p>
<p>这是一句话9</p>
<p>这是一句话10</p>
<p>这是一句话11</p>
<p>这是一句话12</p>
<p>这是一句话13</p>
<p>这是一句话14</p>
<p>这是一句话15</p>
<p>这是一句话16</p>
<p>这是一句话17</p>
<p>这是一句话18</p>
<p>这是一句话19</p>
<p>这是一句话20</p>
</body>
</html>
复制代码
效果截图(动图):
z-index 属性
调整元素定位时重叠层的上下位置
z-index 属性值:整数,默认值为 0 设置了 positon 属性时,z-index 属性可以设置各元素之间的重叠高低关系。
z-index 值大的层位于其值小的层上方。
网页元素透明度
CSS 设置元素透明度 opacity:x
x 值为 0~1,值越小越透明
例:opacity:0.4;
filter:alpha(opacity=x)
x 值为 0~100,值越小越透明
例:filter:alpha(opacity=40);
样例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.container{
position: relative;
}
.container div{
position: absolute;
}
</style>
<title></title>
</head>
<body>
<div>
<div>牛哄哄的柯南</div>
<div>Keafmd</div>
<div>一起加油</div>
</div>
</body>
</html>
复制代码
效果截图:
圆角边框
通过设置 border-radius 属性(边框圆半径)
↓这样设置就可以让正方形的 div 框成为圆。
border-radius:50% ;
样例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.d1{
height: 100px;
width: 100px;
background-color: #6495ED;
line-height:100px ;
text-align: center;
border-radius:50% ;
}
</style>
<title></title>
</head>
<body>
<div>Keafmd</div>
</body>
</html>
复制代码
效果截图:
写作不易,读完如果对你有帮助,感谢点赞支持!
如果你是电脑端,看见右下角的 “一键三连” 了吗,没错点它 [哈哈]
加油!
共同努力!
Keafmd