margin外邊距負值的作用:在很多CSS代碼中,都可以看到margin外邊距有使用負值的情況,下麵就介紹一下他的作用。代碼實例如下:螞蟻部落 以上代碼展現了外邊距負值的作用,也就是和正值的作用相反。關於負值的實例應用可以參閱CSS如何實現數字分頁效果一章節。原文地址是:http://www....
margin外邊距負值的作用:
在很多CSS代碼中,都可以看到margin外邊距有使用負值的情況,下麵就介紹一下他的作用。
代碼實例如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> *{ margin:0px; padding:0px; } #box{ width:300px; height:300px; background-color:red; margin:0px auto; } #top{ width:50px; height:50px; background:blue; } #bottom{ width:50px; height:50px; background:green; margin-top:10px; margin-left:-20px; } </style> </head> <body> <div id="box"> <div id="top"></div> <div id="bottom"></div> </div> </body> </html>
以上代碼展現了外邊距負值的作用,也就是和正值的作用相反。
關於負值的實例應用可以參閱CSS如何實現數字分頁效果一章節。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=12699
更多內容可以參閱:http://www.softwhy.com/divcss/