gpt4 book ai didi

html - 取消其他页面的body背景覆盖,CSS中index.html除外

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

我的 HTML 和 CSS 看起来像这样:

/* GLOBAL */
*{
margin: 0;
padding: 0;
text-decoration: none;
}

body, html{
min-height: 100%;
}

body{
background-image: url('../img/owl1920.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}



.intro{
padding-top: 15%;
padding-left: 7%;
font-family: 'Roboto', sans-serif;
}

.intro h1{
font-size: 5vw;
color: #F2EFC4;
text-shadow: 6px 6px 20px #563300;
}

.intro p{
font-size: 1.6vw;
color: #563300;
opacity: 0.6;
}

.intro .hashtag{
color: #F2EFC4;
text-shadow: 1px 1px 1px #563300;
/* text-shadow: 1px 1px 1px #F2EFC4; */
}

.enter{
margin-top: 50px;
}

.enter a{
font-size: 1.2vw;
font-weight: bold;
color: #F2EFC4;
text-shadow: 1px 1px 1px #563300;
box-shadow: 1px 1px 20px #F2EFC4;
border-radius: 15px;
padding: 10px;
}

.enter a:hover{
color: #563300;
text-shadow: 1px 1px 1px #F2EFC4;
}
<DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<title>Mkreativart | Home</title>
</head>
<body>
<div class="intro">
<h1>mKreativart</h1>
<p class="motto">creativitate, imaginație, <span class="hashtag">#handmadegifts</span></p>
<div class="enter">
<a href="home.html">Intră pe site</a>
</div>
</div>
</body>
</html>

enter image description here

这应该是我的欢迎登陆页面。因为我的主页主体背景已经在 CSS 中设置,如您所见,我现在将创建其余页面,但我想取消为 index.html(在 CSS 中)设置的封面图像并创建一个新布局。

有人可以帮我解决这个问题吗?我对此还是陌生的,我不确定如何搜索问题。我已经尝试搜索 Stack-overflow 但没有成功。

最佳答案

如何将这些样式作为一个类仅应用于主页<body class="home">

.home {
background-image: url('../img/owl1920.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}

这是主页类的页面 - https://jsfiddle.net/dkn2fvL4/1/

没有 - https://jsfiddle.net/eoqca20t/1/

关于html - 取消其他页面的body背景覆盖,CSS中index.html除外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52038096/

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