padding的運用
    	信息來源:
優度網絡  發布日期:2009/3/26 瀏覽數量:
1039次 
 
	
    	文章導讀:
        
    
    
    <html>
<head>
<title>padding</title>
<style type="text/css">
<!--
.outside{
 padding:10px 30px 50px 100px; /* 同時設置,順時針 */
 border:1px solid #000000;  /* 外邊框 */
 background-color:#fffcd3;  /* 外背景 */
}
.inside{
 background-color:#66b2ff;  /* 內背景 */
 border:1px solid #005dbc;  /* 內邊框 */
 width:100%; line-height:40px;
 text-align:center;
 font-family:Arial;
}
-->
</style>
   </head>
<body>
<div class="outside">
 <div class="inside">padding</div>
</div>
</body>
</html>