padding的運(yùn)用
文章導(dǎo)讀:
<html>
<head>
<title>padding</title>
<style type="text/css">
<!--
.outside{
padding:10px 30px 50px 100px; /* 同時(shí)設(shè)置,順時(shí)針 */
border:1px solid #000000; /* 外邊框 */
background-color:#fffcd3; /* 外背景 */
}
.inside{
background-color:#66b2ff; /* 內(nèi)背景 */
border:1px solid #005dbc; /* 內(nèi)邊框 */
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>