gpt4 book ai didi

不同浏览器中的 CSS

转载 作者:太空宇宙 更新时间:2023-11-04 05:22:40 24 4
gpt4 key购买 nike

我使用以下 CSS 制作的任何列表在 IE8 和 FF4 中显示不同。 IE8 没有圆 Angular ,但当我将鼠标悬停在它上面时,FF4 不会改变颜色。他们哪个是对的?

ul#mend {
border-bottom: 1px #5C87B2 solid;
padding: 0 0 2px;
position: relative;
margin: 0;
float: left;
text-align: left;
}

ul#mend li {
display: inline;
list-style: none;
}

ul#mend li#greeting {
padding: 10px 20px;
font-weight: bold;
text-decoration: none;
line-height: 2.8em;
color: #fff;
}

ul#mend li a {
padding: 10px 20px;
font-weight: bold;
text-decoration: none;
line-height: 2.8em;
background-color: #FF99CC;
color: #034af3;
border-radius: 4px 4px 0 0;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
}

ul#mend li a:hover {
background-color: #000000;
text-decoration: none;
}

ul#mend li a:active {
background-color: #a6e2a6;
text-decoration: none;
}

ul#mend li.selected a {
background-color: #fff;
color: #000;
}

编辑:添加 HTML

        <div id="menucontainer">

<ul id="mend">
<li>@Html.ActionLink("TicTacToe", "TicTacToe", "Games")</li>
</ul>


<ul id="menu">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("French", "French", "Home")</li>
</ul>


</div>

最佳答案

Internet Explorer 本身不支持圆 Angular 。 You need to use a hack to get that done .

关于不同浏览器中的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6156405/

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