I must override the body style of my page:
body{ font-size:14px; line-height:20px; }
override:
body{ font-size:
The default line-height is normal, so use:
normal
body { font-size: 100%; line-height: normal; }
FYI, you can confirm this if you have Chrome by opening up a website, inspecting the element and viewing the inherited computed styles.