directives:hr
hr generates a horizontal rule element <hr> and can take modifiers.
| Xilize markup | browser rendering |
|
hr. some other markup hr{background:red;}. some more markup hr{width:20%}. |
some other markup some more markup |
XHTML generated
<hr />
<p>some other markup</p>
<hr style="background:red;" />
<p>some more markup</p>
<hr style="width:20%;" />