gpt4 book ai didi

html - 如何内联显示 h1 和 ul 链接?

转载 作者:行者123 更新时间:2023-12-04 02:52:57 25 4
gpt4 key购买 nike

如何在同一行显示我的 h1 和 ul 标签?这是我的标题文本,位于主要内容之上(这与我必须添加更多文本的问题无关)

这是我的代码:

HTML:

<div id="header">
<h1>Logo</h1>
<ul>
<li><a href="index.html">Home</a> |</li>
<li><a href="fixtures.html">Fixtures & Results</a> |</li>
<li><a href="news.html">News</a> |</li>
<li><a href="players.html">Player</a> |</li>
<li><a href="table.html">Table</a> |</li>
</ul>
</div>

CSS:

#header{
margin:0px;
padding:0px;
color:white;
background-color:red;
width:100%;
}
#header h1{
display:inline;
}
#header ul li{
display:inline;
}
#header ul li a{
text-decoration:none;
font-size:16px;
font-weight:bold;
color:white;
}
#header ul li a:hover{
text-decoration:underline;
}

最佳答案

添加#header ul { display:inline; }。应该这样做。

http://jsfiddle.net/GP2pX/

关于html - 如何内联显示 h1 和 ul 链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17218246/

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