如何使<div>全宽到浏览器边缘?

时间:2015-06-10 22:10:30

标签: html css

我已经创建了一个我遇到的问题的快速示例。 如黑色边框所示,div不会直接进入浏览器的水平边缘(screenshot)。这是相关的代码。

border: 1px solid black;
display: block;
width: 100%;
height: 50px;

我该如何更改?

4 个答案:

答案 0 :(得分:3)

您只需要从浏览器默认样式表重置默认边距值。

body {
    margin: 0;
}

答案 1 :(得分:2)

默认情况下,Html页面有边距。删除它:

html{margin:0}

答案 2 :(得分:1)

html,body{margin:0}或尝试更复杂的重置样式,如下所示。在检查浏览器之间的不一致时,它将在将来为您节省大量时间:

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;
}

答案 3 :(得分:-1)

在给出宽度时使用像素而不是百分比。这是一个很好的做法。