h4 headings missing top padding
The h4 headings in the handbook have padding-bottom of 12px but a padding-top of 0px. This looks wrong because it means the heading is closer to the text above it than the text below it (that it actually corresponds with). h4 should have a padding-top of 12px (just like h3 headings).
For a sample see the "Adjusting playback volume..." heading on the Dynamics page.
Comments
The uneven spacing is especially noticeable at http://musescore.org/en/development
Current layout of headings is uneven
.ms h4 {padding:12px 0 0}
The proposed layout would use equal padding above and below the headings
.ms h4 {padding:12px 0}
It is also possible that the current layout was just a typo, and the padding was supposed to be on the top rather than the bottom
.ms h4 {padding:12px 0 0 0}
Thanks a lot David for pointing this out. I went along with your .ms h4 {padding:12px 0} proposal. Fixed now.