在此测试页面中,元素顶部有一个奇怪的额外空间:
http://dl.dropbox.com/u/3085200/canvasTest/index.html
我尝试将margin,padding,top全部设置为0表示正文,填充为0表示html,但没有一个帮助.
html
{
padding:0px;
}
body
{
margin:0px;
padding:0px;
top:0px;
}
Run Code Online (Sandbox Code Playgroud)
Ren*_*Pot 34
在css中试试这个:
h1 {
margin-top: 0;
}
Run Code Online (Sandbox Code Playgroud)
这是一种常见的场景(徽标图像包含在h1标签中):