亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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>