hr tag的使用

 

hr tag的使用

<html>
<body>
    <h1>HTML</h1>
    <p>HTML is a language for describing web pages.</p>
    <hr>
    <h1>CSS</h1>
    <p>CSS defines how to display HTML elements.</p>
</body>
</html>

上面的hr tag在chrome的預設格式為

hr {
  1. displayblock;
  2. -webkit-margin-before0.5em;
  3. -webkit-margin-after0.5em;
  4. -webkit-margin-startauto;
  5. -webkit-margin-endauto;
  6. border-styleinset;
  7. border-width1px;
}

-webkit-margin-before的作用相當於margin-top

-webkit-margin-after的作用相當於margin-bottom

-webkit-margin-start的作用相當於margin-left

-webkit-margin-end的作用相當於margin-right

而也有人直接使用border-bottom來代替hr tag

例如

border-bottom:1px solid #DFDDD6