web前端常见问题(默认值设置)

初学者在编写html代码并进行调试的过程中,可能会困惑于这种情况:

<!DOCTYPE html>
<head>
   <style>
        div {
            width: 100%;
            margin: 0px;
            background-color: pink;
        }
    </style>
</head>
<body>
    <div id="app">
        我是div
    </div>
</body>
</html>

我们在给特定的元素设置样式时,即使设置的宽度为100%,外边距设置为0 ,这个元素的宽度也依然无法填充整个页面,并且与网页的顶部也有一定间隙。

这是因为,body元素的margin属性的默认值为8px,即外边距为8个像素。

这就导致了body下的所有子元素即使宽度、高度都设置成100%,都无法填充整个网页。

为了解决这一问题,我们通常要创建一个reset.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, 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;
   text-decoration: none;
}
/* 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;
}

然后在往后编写的每一个html代码时,都使用link标签与reset.css进行关联。

<!DOCTYPE html>
<head>
    <link rel="stylesheet" href="./reset.css" type="text/css">
   <style>
        div {
            width: 100%;
            margin: 0px;
            padding: 0px;
            background-color: pink;
        }
    </style>
</head>
<body>
    <div id="app">
        我是div
    </div>
</body>
</html>

这样一来,就可以实现默认值的重置了。

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值