gpt4 book ai didi

html - 无法在输出中获取 div 元素

转载 作者:行者123 更新时间:2023-11-28 05:34:01 25 4
gpt4 key购买 nike

我是前端开发的新手。我只是在试验 HTML/CSS。制作简单的海报后,我尝试制作简单的 freestyle(不特定于任何类型的网站)页面布局。

这是我做的。

https://github.com/imdpm/CodoSapiens/tree/master/LayAtt

我正在尝试添加“内容”类型的划分。我在 style.css 中为它创建了一个样式,并在没有任何内容的情况下在 index.html 中调用它。只是除法。

但输出没有任何“内容”划分。我似乎不明白我在哪里犯了错误。

有人能帮忙吗?

body{
background-image: url("BackIm.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
#icon{
position: absolute;
left: 5px;
height:40px;
width:40px;
}
.topmenu{
background-color: #001a00;
position: absolute;
top: 0;
right: 0;
left: 0;
display: flex;
justify-content: center;
padding: 0;
border-bottom: 1px solid red;
}
.sidemenu{
background-color: darkgrey;
color: black;
position: left fixed relative;
margin: 190px 80px 0 40px;
padding: 8px 6px 0 8px;
border: 1px solid black;
border-radius: 8px;
max-width: 155px;
font-size: 30px;
font-family: sans-serif;
}
.banner{
background-color: #FFA500;
position: absolute;
top:44px;
left: 0;
right: 0;
height: 125px;
border-bottom: 1px solid #228B22;
}
.content{
background-color: #5651F3;
position: relative;
top: 60px;
right: 30px;
left: 25px;
}
#link{
color: black;
text-decoration: none;
padding: 2px 0 1px 0;
color:grey;
font-size:35px;
font-family:"Times New Roman";
font-weight:bold
}
a{
text-decoration: none;
color: black;
padding: 0;
}
hr{
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
<html>
<head>
<title>LayoutAtt</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
<div class="topmenu">
<img id="icon" src="https://github.com/imdpm/CodoSapiens/blob/master/LayAtt/BackIm.jpg?raw=true" alt="Icon">
<a id="link" href="index.html">BackToBeg</a>
</div>

<div class="banner">
</div>

<div class="sidemenu">
<a href="index.html">BackToBeg</a><hr>
<a href="index.html">BackToBeg</a><hr>
<a href="index.html">BackToBeg</a><hr>
<a href="index.html">BackToBeg</a><hr>
<a href="index.html">BackToBeg</a><hr>
</div>

<div class="content">
</div>

</body>
</html>

最佳答案

您需要为内容 div 添加宽度和高度。试试这个

.content{
background-color: #5651F3;
position: relative;
top: 60px;
right: 30px;
left: 25px;
width:100px;
height:100px;
}

使用浏览器中的检查器查看正在呈现的 html 和 css。您可以看到哪些样式应用于哪些元素。

关于html - 无法在输出中获取 div 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38335745/

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