gpt4 book ai didi

html - CSS渐变背景不完整

转载 作者:太空宇宙 更新时间:2023-11-04 14:15:17 24 4
gpt4 key购买 nike

我正在尝试设置我的页面渐变样式的整个背景,但是,它看起来像这样 http://imgur.com/kr0YnPl

CSS:

#gradient {

background: #00BFFF;
background: -webkit-linear-gradient(to right bottom, #086A87, #00BFFF);
background: linear-gradient(to right bottom, #086A87, #00BFFF);
border-radius: 2px;
}

HTML:

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<!-- Reset CSS-->
<link rel="stylesheet" href=".../public/stylesheets/css_reset.css">
<!-- Main CSS-->
<link rel="stylesheet" href=".../public/stylesheets/main.css">
</head>
<body id="gradient">
<p>Hello World!</p>
</body>


</html>

我意识到如果我添加 height: 880px; 或一些高度,它看起来像 http://imgur.com/AkUdK3e这就是我想要的样子。但是有没有办法不用设置height呢?我试过了

background-image: linear-gradient(to right bottom,#086A87, #00BFFF);

但它看起来仍然像第一个链接,除非我添加高度。找到我的页面的高度很烦人,我不想添加任何额外的高度,如您所见,我可以在第二张图片中向下滚动。如果添加 height 是唯一的方法,那么定义页面高度的好方法是什么,这样就不会向上/向下或向左/向右滚动了?

谢谢。

最佳答案

这是给你的答案

http://codepen.io/vilaskumkar/pen/bNjzVb

html, body {
height: 100%;
}
body {
background-repeat: no-repeat;
background-attachment: fixed;
}

关于html - CSS渐变背景不完整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28874741/

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