我想知道为什么在HTML中,当我制作整个页面的表时,我得到了一个不需要的空间。我怎样才能删除那个空间?我尝试了<context:property-placeholder location="classpath:/default.properties"/>
和cellpadding="0"
Space between the address bar and the page
border="0"
答案 0 :(得分:2)
body元素有一个默认边距。只需将正文0
设置为body{
margin:0;
}
即可。
“CSS RESET”过度杀伤,不应该被要求。
<html>
<head>
<title>Lord Machine Admin</title>
</head>
<body>
<table width="100%" height="100%" bgcolor="Blue" border="1" cellpadding="0">
<tr height="100px">
<td>
</td>
</tr>
</table>
</body>
</html>
$('.go-nogo-status').text(message);
$('.go-nogo-status').css('font-size', '100%');
var w = $('.go-nogo-status').width();
$('.go-nogo-status').css('font-size', (w*3)/w + 'vmin')
答案 1 :(得分:1)
在大多数浏览器中,the <body>
element gets a default CSS margin(在Chrome中,它是8像素)。
您可以使用CSS删除此默认样式:
<html>
<head>
<title>Lord Machine Admin</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<table width="100%" height="100%" bgcolor="Blue" border="1" cellpadding="0">
<tr>
<td>
</td>
</tr>
</table>
</body>
</html>
正如其他答案所提到的那样,有各种CSS重置样式组试图以合理的方式反转默认浏览器样式,为您提供一个空白的平板。
但是,这可能比您需要的CSS多,或者您最终可能会重新设置您实际想要保留的默认浏览器样式。
答案 2 :(得分:0)
使用&#34; CSS重置&#34;使用CSS Universal选择器并删除任何可能是浏览器特定渲染空白区域或来自其他样式表的默认空白区域:
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
&#34; CSS重置的好地方&#34;在主网站样式表的顶部,您的主样式表应该在任何外部样式表之后,例如bootstrap.css
答案 3 :(得分:0)
这是一个CSS RESET。您可以使用它来重置所有默认的预应用边距填充等。 / * http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 许可证:无(公共领域) * /
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}