gpt4 book ai didi

html - CSS full width header (Full width, cannot see body background)

转载 作者:太空宇宙 更新时间:2023-11-04 02:03:39 26 4
gpt4 key购买 nike

我已经多次看到这个问题被问到,但是当我尝试实现他们的解决方案时,它似乎不起作用。

我目前开始使用外部样式表涉足 HTML 和 CSS。

我创建了一个包含以下内容的容器(边框只是为了帮助我了解容器):

header{
width: 100%;
height:100%;
margin: 0 0 0 0;
background: lightgrey;
border: solid red;
}

header>h1{
color:black;
border: solid blue;
margin: 0px 0px 0px 0px;
}

header>p{
font-style: italic;
text-align: left;
color:white;
border: solid yellow;
margin: 0px 0px 0px 0px;
}
<header>
<h1>My Web Space</h1>
<p> First HTML Page using Sublime Text</p>
</header>

但是,当我在网页中运行它时,页眉的宽度不是浏览器窗口的 100%。我仍然可以在顶部、左侧和右侧看到 body 背景的一些粘液部分(在本例中为红色)。

我设置了sliderhomepage的高度和背景来呈现效果

最佳答案

将此添加到您的 css 中:

    *{
margin:0;
padding:0:
box-sizing:border-box;
}
body{
width:100%;
max-width:100%;
height:100%;
}
header{
height:100%;
margin:0;
background: lightgrey;
border:2px solid red;
}

看到它工作:

*{
margin:0;
padding:0:
box-sizing:border-box;
}
body{
width:100%;
max-width:100%;
height:100%;
}
header{
height:100%;
margin:0;
background: lightgrey;
border:2px solid red;
}

header>h1{
color:black;
border: solid blue;
margin: 0px 0px 0px 0px;
}

header>p{
font-style: italic;
text-align: left;
color:white;
border: solid yellow;
margin: 0px 0px 0px 0px;
}
<header>
<h1>My Web Space</h1>
<p> First HTML Page using Sublime Text</p>
</header>

关于html - CSS full width header (Full width, cannot see body background),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41289528/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com