框中包含的文本在浏览器中显示为顶部填充,但不在小提琴中显示
从昨晚起我就一直目睹这种奇怪的行为。
这是小提琴: http://jsfiddle.net/Gqndm/
这是我得到的屏幕截图我机器上的所有主要浏览器: https://i.sstatic.net/Bl3ve.png
关于文本出现原因的任何想法在盒子中被向下推(例如,不像在小提琴中那样位于盒子的最顶部)。
感谢您的帮助
I have been witnessing this weird behavior since last night.
Here's the fiddle: http://jsfiddle.net/Gqndm/
and here is a screenshot of what I get in all the major browsers on my machine:
https://i.sstatic.net/Bl3ve.png
Any idea as to why the text appears to be pushed down in the box (e.g. not being at the very top of the box, like in the fiddle).
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jsFiddle 导入一个名为
normalize.css
的 CSS 文件,其中包含以下内容CSS...如您所见,
p
和div
元素的margin
和padding
设置为0
。这有效地规范了所有浏览器的默认样式表。如果您在其他浏览器测试中包含此 CSS,毫无疑问您会看到与 jsFiddle 中相同的 CSS。
jsFiddle imports a CSS file called
normalize.css
with the following CSS...As you can see,
p
anddiv
elements have theirmargin
andpadding
set to0
.This effectively normalises all browser's default stylesheets. If you included this CSS in your other browser tests, no doubt you will see the same that is in jsFiddle.