我阅读了适用于Google Chrome的
@L_502_0@元素的默认样式,可用于
here.我发现:
p { display: block; -webkit-margin-before: 1__qem; -webkit-margin-after: 1__qem; -webkit-margin-start: 0; -webkit-margin-end: 0; }
1__qem是什么意思?
解决方法
从WebKit源:
CSSPrimitiveValue.h
// This value (__qem) is used to handle quirky margins in reflow roots // (body,td,and th) like WinIE. // The basic idea is that a stylesheet can use the value __qem (for quirky em) // instead of em. // When the quirky value is used,if you're in quirks mode,the margin will // collapse away inside a table cell.
有关怪癖模式的更多信息:http://en.wikipedia.org/wiki/Quirks_mode
现代网站不应该在怪癖模式中,所以你可以放心地假设它与所有意图和目的都是一样的.