2010-10-07 107 views

回答

0

設置填充/保證金您小時0:(注意我把HR裏面的,因爲你不希望所有HR的假設風格你也可以給< HR />它自己的CSS

<html> 
<head> 
<style type="text/css"> 
body {color:red;} 
h1 {color:#00ff00;} 
p.ex {color:rgb(0,0,255);} 
.new{vertical-align:text-bottom;} 
.new hr{padding:0;margin:0;} 

</style> 
</head> 

<body> 
    <div class="new"> 
    test text 
    <hr/> 
    <div> 

</body> 
</html> 
1

我將在HR元件的邊緣和填充設置爲零。

hr { 
margin:0; 
padding:0; 
}