gpt4 book ai didi

html - 需要这种 div 的 CSS 代码

转载 作者:行者123 更新时间:2023-11-28 12:47:54 25 4
gpt4 key购买 nike

我需要这种网站的 CSS 代码:

SITE LOOK

通过我的代码,我得到了这个:

SITE FOR NOW

这是我的索引页代码:

<html>

<head>

<link type="text/css" rel="stylesheet" href="index.css"/>

<title>
Home Page
</title>

</head>

<body>

<div id=header>

<h1>THIS IS HEADER</h1>

</div>

<div id=account>

THIS IS ACCOUNT<br>
oasdjasdj<br>
asdkasd<br>
asdpasod<br>
</div>

<div id=navigation>

THIS IS NAVIGATION

</div>

<div id=content>

THIS IS CONTENT

</div>

<div id=right_side>

THIS IS RIGHT SIDE

</div>

<div id=footer>

THIS IS FOOTER

</div>

</body>

这是 CSS 文件:

    h1{
font-family: Verdana;
font-weight: bold;
text-align: center;
padding-top: 25px;
padding-bottom: 25px;
color: #acd1b2;
}

#header{
margin : 0px;
position: relative;
width:80%;
background-color: red;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}

#navigation{
margin : 0px;
width:80%;
background-color:blue;
}

#right_side{
width: 20%;
float: right;
background-color: #green;
}

#footer{
clear: both;
position: relative;
width:80%;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
background-color: gray;
}

#account{
position: relative;
width: 20%;
float: right;
background-color: #yellow;
}

#content{
width:80%;
float:left;
background-color:#black;
color: white;
}

如果有人知道如何像我的第一张图片一样定位 div,请帮忙。当我尝试某事时,我总是会得到奇怪的结果。感谢您的帮助!

最佳答案

好的,您编写 HTML 的方式存在一些问题。首先,ID 标签应始终在 ID 名称周围加上引号。我只会制作一个容器 div,一个左边的 div,一个右边的 div。

我做了一个使用 float 来控制布局的演示。 div 包含在限制为 800 像素的大 div 中。

Here's the demo that I made on JS Bin

HTML:

<body>
<div id="container"> <!-- Make a container to hold everything. Centered in CSS -->
<div id="left-side">

<div id="header">Header</div>
<div id="navigation">Navigation</div>
<div id="content">Content Here</div>
<div id="footer">Footer</div>

</div> <!-- End of the left side div -->


<div id="right-side">

<div id="account">Account</div>
<div id="right_side">Right Side</div>

</div> <!-- End of the right side div -->
</div> <!-- End of the container div -->

</body>

CSS:

*{
font-family:sans-serif;
}

#container{
max-width:800px;
margin: 0 auto;
}

#left-side{
float:left;
width:60%;
}

#right-side{
float:right;
width:37%;
}

#left-side div{
text-align:center;
margin-bottom:10px;

}
#right-side div{
text-align:center;
margin-bottom:10px;
}

#header{
background-color: yellow;
text-align:center;
padding:20px 0px;
}

#navigation{
padding:10px 0px;
border: 1px black solid;
}

#right_side{
background-color: cyan;
padding:50px 0px;
}

#footer{
background-color: gray;
padding:5px 0px;
}

#account{
background-color: green;
padding: 10px 0;
}

#content{
background-color:black;
color: white;
padding:100px 0px;
}

关于html - 需要这种 div 的 CSS 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24688304/

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