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

CSS ?? ??

CSS??? ?? ??? ?? ??(?? ?? ??)??? ???. ?? ??? ?? ??? ?? ???, ??, ??? ? ??? ???? ??? ?????. HTML ??? ? ???? ?? ??? ???? ? ??(?? ??? ????)??? ?? ??? ???? ????.

CSS ?? ??: W3C ????? ? ???? ?? ??? ??? ?? ?? ?????(??? ??? ??? ??? ? ?? ??? ?????). ?? ??, ???, ??? ??)

1009.png

??: ? ???? ???? ????? ?????(content), ?? ???(padding-top, padding-right, padding-bottom, padding-left), ???(border-top, border-right, border-bottom, border-left) ? ??(marging-top, margin-right, margin) -??, ??-??) ).

1010.png

? ??? ????? ?? ??? ?? ?? ??? ?? ???(??)???. ?? ??, ??? ??? ??? ?????. ??? ??? ???? ????? ????? ? ??? ?? ??(??? ??)? ???? ????. ??? ??? ?? ??? ?????). ??? ??? ???? ??, ???? ??? ??? ?????.

?? ??:
?? ???: content
?? ???: border
?? ??? ? ?? ??? ??: padding ---padding ?? ??(?? ??)
??? ?? ?? ?? ?? ??? ??: border ---margin, ?? ??(??? ??) )

? ???? ?? ?? ?? ??: ?? ??? + ?? ??? + ?? ?? + ?? + ??? ?? + ??? ??? + ??? ???

CSS ?? ?? ??:
??? ??: ?? = ?? ?? = ??
?? ?? ??(???? ??? ??? ??): ??
?? ??: ??(????? ? ?? ???? ??? ? ??? ?????)
?? ?? ? ??? ??:
????? 4? ?? ??: ??, ???, ???, ??? ???? ?? ??? ??? ?? ????.
????? 1?? ?? ??: ??, ???, ??, ??
????? 2?? ??: ? ?? ????? ??? ????, ? ?? ????? ??? ???? ?????.
????? 3? ?? ??: ??, ??, ??? ?????

??? ??: border

?:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文網(wǎng)(php.cn)</title>
<style type="text/css">
#box {  
    width:200px;  
    height:100px;  
    margin:10px 20px 30px 40px;  
    border:solid 10px red;  
    padding:10px 20px 30px 40px;  
    background-color:green;  
}  
#content {  
    width:100%;  
    height:100%;  
    background:blue;  
}  
</style>
</head>
<body>  
<div id="box">  
  <div id="content"></div>  
</div>  
</body>  
</html>


???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style type="text/css"> #bigBox{ width:300px; height:300px; background:#F30; padding:20px 0px 0px 20px; margin:20px; } #smallBox{ width:150px; height:150px; background:#6F9; padding-top:20px; } </style> </head> <body> <div id="bigBox"> <div id="smallBox"> 小盒子 </div> </div> </body> </html>