View Single Post
Old 12-21-2013, 03:28 AM   #11
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,543
Karma: 19001583
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
The HR is basically a rectangle with a border. Default colours, as well as thickness of the rectangle and border settings my vary between renderers. You could try this (untested):

Code:
hr.sectionbreak {
  width: 10%;
  margin: 1em 45%;
  height: 0; /* invisible rectangle */
  border-width: 0 0 1px 0; /* only bottom border */
  border-style: solid; /* choose other styles if you want other than a continuous line */
}
I believe by default the border will be rendered in the text colour (black normally, white in "night mode", etc.), so it's better not to touch it, but if you want to specify the rule colour, use border-color.
Jellby is offline   Reply With Quote