对于IE7使用html和css,如何在没有自动生成的顶部边框的情况下将html表放在屏幕的最顶部?
我正在vs2008中开发。
答案 0 :(得分:4)
您可能正在查看文档正文的默认边距。 在身体上将边距设置为0,最好使用css。 我建议使用重置css在每个浏览器中设置页面的默认样式,网上有很多。样品:
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
}
答案 1 :(得分:1)
删除桌子上的边框。
CSS方法:
table / #id-of-your-table / .class-of-your-table { border: 0; }
内联样式方法:
<table style="border: 0;"> ... </table>