gpt4 book ai didi

html - 渐变未出现在页 footer 分

转载 作者:太空宇宙 更新时间:2023-11-04 13:04:43 25 4
gpt4 key购买 nike

我正在为我的网站设计网页。我在正文中使用了从上到下的颜色渐变。颜色渐变出现在整个 2/3 的正文中,但错过了靠近页 footer 分的 1/3 正文。

enter image description here

我的 CSS:

body{
/* IE10 Consumer Preview */
background-image: -ms-linear-gradient(top, #FFFFFF 0%, #D4D9E9 100%);

/* Mozilla Firefox */
background-image: -moz-linear-gradient(top, #FFFFFF 0%, #D4D9E9 100%);

/* Opera */
background-image: -o-linear-gradient(top, #FFFFFF 0%, #D4D9E9 100%);

/* Webkit (Safari/Chrome 10) */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(1, #D4D9E9));

/* Webkit (Chrome 11+) */
background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #D4D9E9 100%);

/* W3C Markup, IE10 Release Preview */
background-image: linear-gradient(to bottom, #FFFFFF 0%, #D4D9E9 100%);
margin: 0px 0px 0px 0px;
}

.headerMenu{

background-image: url(../img/headerMenu.png);

height: 75px;
border-top: 0px;
border-bottom: 0px;
padding-top: 0px;
padding-left: auto;
padding-right: auto;
width: 100%
}


#wrapper{
background-image: url(../img/headerMenu.png);
margin-right: auto;
margin-left: auto;
width: auto;
padding-top: 0px;
padding-bottom: 0px;
}


.logo{

float:left;
padding-top: 11px;
padding-left: 170px;
padding-bottom: 25px;
width: 80px;
}

.logo img
{
display:inline-block;
width: 180px;
height: 60px;
}

.objective
{
font-family: Helvetica;
font-weight: bold;
font-size: 150%;
font-style: oblique;
padding-top: 30px;
padding-left: 130px;
}

.holder{

padding-left: 90px;
}

标记:

<!doctype html>

<head>

<title>Lorem Ipsum</title>
<link rel="stylesheet" type="text/css" href="./css/style.css" />
</head>

<body>

<div class="headerMenu">
<div id="wrapper">
<div class="logo">
<img src="./img/logo-final.png"/>

</div>

</div>
</div>
<div class="objective">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit</br>
incididunt ut labore et dolore magna aliqua
</p>
</div>
</div>


<div class=holder>
<img src="./img/map.png">
</div>
</body>

附言: 我在 Chrome 和 Firefox 上都试过了

最佳答案

将以下内容添加到您的 CSS:

html,body{
height:100%;
}

参见 DEMO在这里。

关于html - 渐变未出现在页 footer 分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25215928/

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