I reading through the default styling applied to HTML elements for Google Chrome, available here. I found this:
p {
display: block;
-webkit-margin-before: 1__qem;
-webkit-margin-after: 1__qem;
-webkit-margin-start: 0;
-webkit-margin-end: 0;
}
What does 1__qem mean?
From the WebKit source: CSSPrimitiveValue.h
More information on Quirks Mode: http://en.wikipedia.org/wiki/Quirks_mode
Modern sites should never be in Quirks Mode, so you’re safe to assume that it’s the same as
emfor all intents and purposes.