gpt4 book ai didi

html - 在一个盒子里得到 2 个 Div?

转载 作者:太空宇宙 更新时间:2023-11-04 01:46:42 26 4
gpt4 key购买 nike

我想知道如何在一个 div 中得到 2 个 div

enter image description here

html {
margin: auto;
width: 960px;
height: auto;
}

#navbar {
height: 90px;
background-color: #080808 !important;
display: block;
}

.logo {
padding-left: 31px;
height: 90px !important;
width: 90px !important;
}

.navitems li,
.navitems ul {
list-style-type: none;
display: inline-block;
}

.navitems {
float: right;
}
<div id="navbar">
<div class="logo">
<img src="images/logo.png" alt="" width="90px" height="90px">
</div>
<div class="navitems">
<li>
<ul><a href="#">Home</a></ul>
<ul><a href="#team">Contact Us</a></ul>
<ul><a href="#about">About</a></ul>
</li>
</div>
</div>

最佳答案

使用 flex 可能更好。

在父元素(导航器)上设置“display: flex”和“justify-content: space-between”。我还更改了图像,使其背景颜色突出。

html {
margin: auto;
width: 960px;
height: auto;
}

#navbar {
height: 90px;
background-color: #080808 !important;
display: flex;
justify-content: space-between;
}

img {
background-color: #0ff;
}

.logo {
padding-left: 31px;
height: 90px !important;
width: 90px !important;
}

.navitems li,
.navitems ul {
list-style-type: none;
display: inline-block;
}
<div id="navbar">
<div class="logo">
<img width="90px" height="90px">
</div>
<div class="navitems">
<li>
<ul><a href="#">Home</a></ul>
<ul><a href="#team">Contact Us</a></ul>
<ul><a href="#about">About</a></ul>
</li>
</div>
</div>

更多关于 flex 属性: https://css-tricks.com/snippets/css/a-guide-to-flexbox/

关于html - 在一个盒子里得到 2 个 Div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44348625/

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