塊級元素 的高度、寬度、行高 以及 頂 和 底邊距 怎么設(shè)置???希望能寫一下代碼,標(biāo)準(zhǔn)的格式??
div,p,h1{background:pink;}
</style>
</head>
<body>
<h1>hkds</h1>
<div>div1</div>
<div>div2</div>
<p>段落1段落1段落1段落1段落1</p>
</body>
</html>
div,p,h1{background:pink;}
</style>
</head>
<body>
<h1>hkds</h1>
<div>div1</div>
<div>div2</div>
<p>段落1段落1段落1段落1段落1</p>
</body>
</html>
2016-09-01
舉報
2016-09-01
這里拿<h1>塊級元素來說明
<style type="text/css">
?????h1{
????width:200px;/*寬*/
????height:100px;/*高*/
????padding-top:10px;/*行高*/
????margin-top:5px;/*頂邊距*/
????margin-bottom:5px;/*底邊距*/
}
<style>
2016-09-01
-top(上)-bottom(下)-left(左)-right(右)
2016-09-01
<style type="text/css">
?????h1{
????width:200px;/*寬*/
????height:100px;/*高*/
????padding-top:10px;/*行高*/
????margin-top:5px;/*頂邊距*/
????margin-bottom:5px;/*底邊距*/
}
<style>