gpt4 book ai didi

css - 如何优化导航栏以调整大小?

转载 作者:行者123 更新时间:2023-11-28 11:15:21 27 4
gpt4 key购买 nike

我大约 6 天前才开始学习 html 和 css。我每天做一个小时,我从中获得了很多乐趣。我试图自己解决大部分问题,但我一直难以找到解决此问题的资源。

@import url(http://fonts.googleapis.com/css?family=Merriweather);

*
{
text-decoration: none;
box-sizing: border-box;
}

body
{
background-color: #ff9900;
font-family: 'Merriweather', serif;
}

#page
{
margin: -8px;
}

#wrapper
{
/*margin: 1px;*/
}

h2>a
{
margin: -25px;
float: left;
background-color: #ffde00;
color: #097054;
padding: 20px;
}

h2>a:hover
{
color: #ffde00;
transition: .5s ease;
background-color: #6599ff;
}

.container
{
padding: 6px;
padding-right: 50px;
padding-left: 20px;
text-align: center;
background-color: #097054;
}

ul li
{
background-color: #ffde00;
display: inline;
margin: 0 auto;
padding: 10px;
color: #097054;
font-weight: 900;
font-size: 14pt;
}


ul li:hover
{
transition: .5s ease;
background-color: #097054;
border-color: #25C1BC;
color: #ffde00;

}

#p1
{
color: #097054;
height: 25em;
width: 25em;
background-color: #097054;
margin-left: 8px;
margin-top: 20px;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}

p
{
background-color: #ffde00;
padding: 20px;
margin-top: 8px;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
}

#p1:hover;
{
/*background-color: #000000;*/
}

p:hover
{
height: -75%;
width: -75%;
padding-bottom: 3.8em;
box-shadow: -5px -5px 0px 0px #097054;
margin-top: 3em;
color: #ffde00;
background-color: #6599ff;
font-weight: 600;
}

本质上,我的导航栏在调整大小后会变得非常困惑。这会导致链接重叠并且看起来非常糟糕。

感谢您的时间和考虑。

http://jsfiddle.net/JZ9LZ/

最佳答案

添加这个 .container{white-space: nowrap;}这个问题之前有人问过Disable line breaks using CSS

关于css - 如何优化导航栏以调整大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21782668/

27 4 0