为什么我没有设置默认保证金?

时间:2019-07-04 06:27:08

标签: html css sass

我已将类{{1}}设置为div。即使我只设置了背景色,但从镀铬窗口的所有侧面都出现了空白。我的代码如下:

{{1}}

我要删除该div标签的边距。

4 个答案:

答案 0 :(得分:1)

* {
  margin: 0;
  padding: 0;
}
.mainBackground {
  background-color: #ece8e8;
  width: 100%;
  padding: 100px 0;
  text-align: center;
}
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<div class="mainBackground">
    hello
</div>
</body>
</html>

给定裕度:0;和填充:每个元素0!希望对您有帮助

答案 1 :(得分:0)

这是因为每种浏览器都有自己的样式。如果要删除它,有两种解决方法。

  

第一个解决方案为每个元素0设置边距和填充

* {
 margin: 0;
 padding: 0;
}
  

第二个解决方案将margin和padding设置为element / class / id

body, div{ 
     margin: 0;
     padding: 0;
}

答案 2 :(得分:0)

如前所述,每个浏览器对事物都有自己的“看法”。每个浏览器都有自己定义的样式预设。要绕过自己的解释,建议使用reset-css。

下面的代码摘录中找到了一个可能的示例

Source

    /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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)

每个浏览器都有every元素的默认样式。例如,它为所有内容定义了标准字体大小。并且它还为元素定义了一些标准间距。因此,如果您仅使用HTML编写页面,并且不添加任何CSS,它仍然是可读且可理解的。

如果您不想使用这些默认样式,则必须使用自己的样式覆盖它们。

一种消除多余间距的常见方法是在所有元素上将其设置为0:

* { margin: 0; padding: 0} //you can also just define all elements you want here instead of star-selector

您还可以使用一些reset.css