gpt4 book ai didi

html - 背景渐变问题

转载 作者:行者123 更新时间:2023-11-28 14:13:20 25 4
gpt4 key购买 nike

我尝试为我的网站制作渐变背景。你能帮我么?我现在正在学习 CSS/HTML。所以背景应该有一个从红色到黄色的渐变。我在等你的答案 c;

这是我的个人网站

body {
background-image: linear-gradient(to bottom, red, yellow);
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

#card {
position: relative;
box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
background-color: #ffffff;
padding: 75px;
border-radius: 35px 35px;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
}

#card:hover {
box-shadow: 0 25px 50px black;
}

#person {
background-image: linear-gradient(to bottom, #c94370, #3a679a);
font-size: 67px;
font-size-adjust: 0.58;
font-family: 'Open Sans', bold;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

#profile {
display: block;
height: 320px;
margin-left: auto;
margin-right: auto;
border-radius: 100% 100%;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
}

#profile:hover {
box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

#mail {
display: block;
border: 5px solid #303030;
font-family: 'Open Sans', bold;
border-radius: 15px 15px;
background-color: #ffffff;
padding: 15px 42px;
font-size: 36px;
color: #303030;
text-align: center;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
margin-left: auto;
margin-right: auto;
}

#mail:hover {
color: white;
background-color: #303030;
}
<!DOCTYPE html>
<html>

<head>
<title>Hello World</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="oskar.png" type="image/png" />
<link rel="icon" href="oskar.png" type="image/png" />
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>
<div id="card">
<img src="oskar.png" id="profile"> <br>
<b id="person">Oskar </b><br><br>
<button id="mail" onclick="window.location.href='mailto:mail@mail.mail?subject=Die%20Website%20ist%20krass'">E-Mail</button>
</div>
</body>

</html>

我希望有红色和黄色的渐变背景

最佳答案

您的 CSS 应如下所示:

body {
background-image: linear-gradient(to bottom, red, yellow);
background-repeat: no-repeat;
background-attachment: fixed;
position: static;
}

#card {
position: relative;
width: 300px;
height: 500px;
margin: auto;
box-shadow: 5px 5px 10px rgba(0, 0, 0, .5);
background-color: #ffffff;
padding: 75px;
border-radius: 35px 35px;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
}

position: absolute 弄乱了背景的显示。这相对于它的父元素定位一个元素。由于 body 的父级是 html 标记,所以我不太确定这会将 body 定位在哪里,但它不是您想要的位置。

参见此处:https://www.w3schools.com/css/css_positioning.asp

你也不应该描述 body 内部的定位,因为你放在 body 内部的所有东西都会尽量远离顶部和左侧 50%。与变换相同。这些样式应该添加到您正在设置样式的实际元素中。

background-repeat: no-repeat、background-attachment: fixed 和 position: static 将确保渐变适应窗口大小并且不会出错。

您可以看到我是如何将高度、宽度和边距样式添加到您的卡片类中的。

https://jsfiddle.net/AnthrOne/1guch73d/14/

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

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