国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

CSS ?? ??

1. CSS ?? ??

?? ??? ?? ??? ?????. ?? ?? ?? ??? ?? ?? ?? ?? ??, ?? ?? ?? ?? ??? ???? ????? ?? ??? ??? ? ????. ???? ? ??? ??? ???????.

CSS?? ? ?? ?? ?? ?? ????? ????.

?? ??:

HTML?? ??? ?? ??? ?? ???? ????

??:

?? ??? ??? ????? ?? ??? ?? ?? ??? ???? ?? ??? ???? ????? ??? ? ????.

?? ?? ??:

?? ?? ??? ??? ??? ????? ??? ????? ??? ??? ???? ????. ?? ??? ??? ?? ??? ??? ????? ??? ??? ?? ?? ?? ?? ??? ??? ???? ?? ?? ??? ????.

?? ?? ?? :

??, ??, ??, ???? ???? ??? ??, ??, ?? ?? ?? ??? ?????

, ?? ? ? ?? ??? ???? ??? ?? ???? ??????.

overflow? ??? ?? ??? ?? ? ???? ??? ?????.

clip? ??? ?? ??? ????, ?? ?????.

vertical-align? ??? ?? ??? ?????.

z-index? ??? ?? ??? ?????.

???? position ??? ???????. ???? ?? , ?? html ??? CSS ??? ????.

html:

<div class="position1"></div>
<p>this is php中文網(wǎng)</p>
<p>this is php中文網(wǎng)</p>
<p>this is php中文網(wǎng)</p>
<p>this is php中文網(wǎng)</p>

CSS:

.position1{
    width: 100px;
    height: 100px;
    background-color: cornflowerblue;
 
}

?? ?? ?? ??? ??? ? ? ????.

QQ截圖20161011162700.png


CSS?? ?? ?? ??? ??? ? ???? 60px ???

 position: relative;
 left: 60px;

??? ??? ????.

QQ截圖20161011162859.png


???? ??? ????? ?????.

position: absolute;

??? ??? ????.

QQ截圖20161011162926.png


??? ?? ? ?? ?? ?? ??? ??? ? ????. ?? ? ??? ??? ?? ????. ??, ??? ????? ?? ??? ???? ??? static?? ???? ???? ??? ????.

?? ??? ???????

? div ?? ??? ?????: HTML

<div class="position1"></div>
<div class="position2"></div>

CSS add:

.position2{
    width: 100px;
    height: 100px;
    background-color: aquamarine;
    position: relative;
    left:10px;
    top: 10px;
}

?? ??? ?????:

QQ截圖20161011163317.png

??? z-index? ???? ?? ?? ??? ??? ? ????:

???? CSS ??? ???? ??? ?????.

z-index: 2;

? ?????.

?? 2? ??:

z-index: 1;

?? ??? ????:


?QQ截圖20161011163355.png

???? ??
||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link rel="stylesheet" type="text/css" href="style.css" /> <title>Title</title> </head> <body> <div class="position1"></div> <div class="position2"></div> <p>this is php中文網(wǎng)</p> <p>this is php中文網(wǎng)</p> <p>this is php中文網(wǎng)</p> <p>this is php中文網(wǎng)</p> </body> </html>