Huditsch, Roman (LNG-VIE) wrote:
> Thanks for the link.
> I tried to use
> linie {
> margin-top: 10px;
> background-color: black;
> font-size: 1px;
> }
>
> But the line seems too thick.
> Unfortunately your suggestion doesn't work, becaus it shows the marker for
> text input.
>
Oh sorry, I didn't understand that you wanted this kind of line! I
thought you wanted a line of *text*.
I suggest to do something similar to XHTML's hr:
---
hr {
display: block;
content: icon(invisible) icon(invisible);
border: 2 inset gray;
}
/*
* Partial support for the Transitional DTD.
*/
hr[noshade] {
background-color: gray;
border-style: solid;
}
---
The above rules give you the choice between 2 different styles.
Of course, you can add margin-top: if you want.