21 Apr, 2009
HTML hr stylen via CSS
Categoriën: crossbrowser |solution |template |valid |W3C |Xhtml Strict
Je staat er misschien nooit bij stil of hebt het nog nooit geprobeerd/gedaan, maar je moet eens proberen een hr <hr> tag (horizontal rule) te stylen via CSS.
HTML
<hr />
CSS
hr {
height: 0;
border: 0;
border-top: 1px solid #bae1f7;
}
