Remove the standard line-height attribute from <br> elements

This is because it was messing with using line-height on the outer
element. In order to get around this, the line height had to be set
individually on every single <br> element used.
This commit is contained in:
BrokenEagle
2020-03-03 20:57:13 +00:00
parent 7a81fd03ef
commit 20bad0ec53

View File

@@ -16,7 +16,7 @@ div#note-container {
}
div.note-body, div.note-box.embedded div.note-box-inner-border {
h1, h2, h3, h4, h5, h6, a, span, div, blockquote, br, p, ul, li, ol, em, strong, small, big, b, i, font, u, s, code, center {
h1, h2, h3, h4, h5, h6, a, span, div, blockquote, p, ul, li, ol, em, strong, small, big, b, i, font, u, s, code, center {
line-height: 1.25;
}