BUG
The default overflow property for <hr> in some versions of Chrome, Edge and IE is hidden. This results in the following css not rendering properly - the Font Awesome star icon specified in 'content' in hr.star :after (content: "\f005") does not display.
FIX
To fix the above issue (have the FA star icon render in the header) specify the overflow property in hr.star CSS as 'visible'.
hr.star-light,
hr.star-primary {
margin: 25px auto 30px;
padding: 0;
max-width: 250px;
border: 0;
border-top: solid 5px;
text-align: center;
/ Added overflow property and set to 'visible' /
overflow: visible;
}
vid1 (2) - 6 years ago - Reply 3
Good tip! Thanks. Using Flux, I got this error.
Just included your code in <HEAD></HEAD>:
<style> hr.star-light,
hr.star-primary {
margin: 25px auto 30px;
padding: 0;
max-width: 250px;
border: 0;
border-top: solid 5px;
text-align: center;
/ Added overflow property and set to 'visible' /
overflow: visible;
}
</style>
nicolaiev () - 6 years ago - Reply 0