gpt4 book ai didi

html - 将两个 div 设置为内联显示,但它们是对 Angular 显示的

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

我在导航栏中有两个 div,当试图以内联方式显示它们时,它们是这样显示的,而不是并排显示:

enter image description here

这是 HTML:

<!--Nav starts here-->
<nav class="navbar">

<div class="navbar-item-set">
<div class="navbar-item">
<a href="index.html" class="navbar-text">
<img src="images/sad_robot.png" alt="" width="45" height="45"/>
<br>
ID2 Games
</a>
</div>

<div class="navbar-item">
<a href="index.html" class="navbar-text">
<img src="images/sad_robot.png" alt="" width="45" height="45"/>
<br>
Fizz + Hummer
</a>
</div>
</div>

</nav>
<!--Nav ends here-->

以及相应的 CSS:

.navbar{
height: 80px;
text-align: center;
font-size: 1.7rem;
background-color: black;
}

.navbar-item-set{
width: auto;
display: block;
margin-left: auto;
margin-right: auto;
}

.navbar-item{
display: inline;
margin-left: auto;
margin-right: auto;
width: 150px;
color: white;
}

是什么导致了这种奇怪的布局?

最佳答案

改变

.navbar-item{
display: inline;
margin-left: auto;
margin-right: auto;
width: 150px;
color: white;
}

.navbar-item{
display: inline-block;
margin-left: auto;
margin-right: auto;
width: 150px;
color: white;

关于html - 将两个 div 设置为内联显示,但它们是对 Angular 显示的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29704091/

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