开始的时候我想先要解决一个问题,怎么设置一个div盒子撑满整个屏幕? css
看下面的html代码: html
1
2
3
4
5
|
<body>
<div
id
=
"father-body"
>
<div
class
=
"item1"
>
</div>
</div>
</body>
|
实现方法一: 浏览器
1
2
3
4
5
|
html
,
body
,
#
father
-
body
{
height
:
100
%
;
width
:
100
%
;
background
-
color
:
#
123456
;
}
|
这里主要解释下%(百分号)在CSS中使用的问题。% 主要是在父级元素或者是祖先元素定义了固定的width 和height 的时候才能够使用(或者说使用的时候才会有效果)。 spa
实现方法二: htm
1
2
3
4
5
6
|
#
father
-
body
{
position
:
fixed
;
width
:
100
%
;
height
:
100
%
;
background
-
color
:
#
123456
;
}
|
这里为#father-body 设置position属性,触发自身的BFC。当对自身使用width 和 height的时候才能够生效。 对象
position的fixed值的含义: 图片
对象脱离常规流,使用 top,right,bottom,left等属性以窗口为参考点进行定位,当出现滚动条时,对象不会随着滚动。 ip
有了以上的定义,来看一段代码: 文档
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html
lang
=
"en"
>
<head>
<meta
charset
=
"UTF-8"
>
<title>
Document
</title>
<style type="text/css">
.item1, .item2, .item3
{
width
:
300px
;
height
:
100px
;
background-color
:
#123456
;
margin
:
20px
;
}
.item2
{
position
:
relative
;
/*top:40px;
left:40px;*/
margin
:
40px
0
0
40px
;
}
</style>
</head>
<body>
<div>
<div
class
=
"item1"
>
</div>
<div
class
=
"item2"
>
</div>
<div
class
=
"item3"
>
</div>
</div>
</body>
</html>
|
效果以下图:
it
当咱们使用top right bottom left 这样的属性的时候,CSS代码以下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<style
type
="text/css">
.item1, .item2, .item3
{
width
:
300px
;
height
:
100px
;
background-color
:
#123456
;
margin
:
20px
;
}
.item2
{
position
:
relative
;
top
:
40px
;
left
:
40px
;
/*margin:40px 0 0 40px;*/
}
</style>
|
能够看到的效果图以下图:
到这里能够验证当使用top right bottom left (这四个属性能够设置具体的像素数也能够设置百分比)这样属性改变元素的位置的时候,不会影响其余元素的位置。而使用margin 这样的属性改变元素的位置会影响其余元素的位置。
示意图以下(图片来自W3CSchool):
看下面的一段代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html
lang
=
"en"
>
<head>
<meta
charset
=
"UTF-8"
>
<title>
Document
</title>
<style type="text/css">
body
{
margin
:
20px
;
}
#body-div
{
padding
:
15px
;
background-color
:
#a0c8ff
;
border
:
1px
solid
#000000
;
}
#body-div div
{
padding
:
10px
;
background-color
:
#fff0ac
;
border
:
1px
solid
#000000
;
}
</style>
</head>
<body>
<div
id
=
"body-div"
>
<div
class
=
"item1"
>
Box-1
</div>
<div
class
=
"item2"
>
Box-2
</div>
<div
class
=
"item3"
>
Box-3
</div>
</div>
</body>
</html>
|
效果图以下:
咱们为Box-2设置绝对定位属性
1
2
3
|
.item2
{
position
:
absolute
;
}
|
此时Box-2脱离文档流,效果以下:
这个时候Box-3的位置会占据以前Box-2的位置。且Box-2和Box-3的左边框会重合。且盒子的宽度会根据盒子内部的元素自适应。
当盒子设置了绝对定位可是没有使用top right bottom left设置盒子的偏移量的时候,它仍会占据原先的位置。
那么当设置top right bottom left这些属性的时候会是什么效果呢?
设置下面的代码:
1
2
3
4
5
|
.item2
{
position
:
absolute
;
top
:
0
;
right
:
0
;
}
|
效果以下图:
那么当咱们把直接父级元素设置为已定位的元素会怎么样呢?
由上能够得出两个结论:
1.使用绝对定位的盒子以它的“最近”的一个“已经定位”的“祖先元素”为基准进行偏移(定位)。若是没有已经定位的祖先元素,那么就会以浏览器窗口为基准进行定位。
2.决对定位的框从标准流中脱离,这意味着它们对其后的兄弟盒子的定位没有影响。其它的盒子好像就当这个盒子(绝对定位的盒子)不存在同样。
z-index属性用于调整定位时重叠块的上下位置,与它的名称同样,若是页面为x-y轴,则垂直于页面的方向为z轴。z-index大的页面位于其值小的的上面。
看下面的代码:
1
2
3
4
5
6
7
8
9
10
|
.item1
{
position
:
relative
;
z-index
:
3
;
}
.item2
{
position
:
absolute
;
top
:
0
;
right
:
0
;
z-index
:
1
;
}
|
如下的代码我都亲测过,都可以达到效果,就不在展现效果图(若是对代码有疑问能够留言):
1
2
3
4
|
/*行内元素水平居中*/
#body-div
{
text-align
:
center
;
}
|
1
2
3
4
|
/*块级元素水平居中*/
#body-div
{
margin
:
0
auto
;
}
|
1
2
3
4
5
6
7
|
/*多个块级元素水平居中*/
#body-div
{
text-align
:
center
;
}
##body-div-container
{
display
:
inline-block
;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
|
/*已知高度和宽度的水平垂直居中*/
#body-div
{
position
:
relative
;
}
#body-div-container
{
width
:
100px
;
height
:
100px
;
position
:
absolute
;
top
:
50%
;
left
:
50%
;
margin
:
-50px
0
0
-50px
;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
|
/*未知高度和宽度的水平垂直居中*/
#body-div
{
position
:
relative
;
}
##body-div-container
{
position
:
absolute
;
margin
:
auto
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
}
|
1
2
3
4
5
6
7
8
|
#body-div
{
display
:
table-cell
;
text-align
:
center
;
vertical-align
:
middle
;
}
##body-div-container
{
}
|