🏷️<hr>

🔰 HTMLElements ⟩ <hr>

(Horizontal Rule)

represents a thematic break between paragraph-level elements.

注意: <hr> 預設只有 1pxborder沒有 content height❗️

/* default styles */
hr {
    display: block;
    unicode-bidi: isolate;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    overflow: hidden;
    
    /* ⭐️ 預設只有 border, 注意:content height = 0❗️ */
    border-style: inset;
    border-width: 1px;
}

Last updated