gpt4 book ai didi

html - 我们如何通过使用 ie 7 的 css 将新闻效果放在 anchor 标签上

转载 作者:行者123 更新时间:2023-11-28 18:59:23 25 4
gpt4 key购买 nike

我如何在 anchor 标签上施加压力效果。

这是我的 CSS 和 HTML:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<style> .navigation{
height:28px;
line-height:28px;
font-size:11px;
font-weight:bold;
text-transform:uppercase;
float:left;
padding-top:20px;
}
.navigation ul li{
margin:0px;
list-style-type:none;
float:left;
padding-right:5px;
}
.navigation ul li a{
list-style-type:none;
display:block;
float:left;
text-decoration:none;
padding-left:12px;
background:url("../images/nav-bg.png") 0 -56px no-repeat;
color:#999;
}
.navigation ul li a span{
list-style-type:none;
display:block;
float:left;
text-decoration:none;
cursor:pointer;
padding-right:12px;
background:url("../images/nav-bg.png") right -84px no-repeat;
}
.navigation a:hover{
background:url("../images/nav-bg.png") 0 0 no-repeat;
}
.navigation a:hover span{
background:url("../images/nav-bg.png") right -28px no-repeat;
}


.navigation a.activetab{
background:url("../images/nav-bg.png") left -112px no-repeat !important;
}
.navigation a.activetab span{
background:url("../images/nav-bg.png") right -140px no-repeat !important;
color:#fff;
}</style>
</head>
<body>
<div class="navigation">
<ul>
<li><a href="javascript:void(0):" class="activetab"><span>Dashboard</span></a></li>
<li><a href="javascript:void(0):"><span>Courses</span></a></li>
<li><a href="javascript:void(0):"><span>Reports</span></a></li>
<li><a href="javascript:void(0):"><span>Message Board</span></a></li>
</ul>
</div>
</body>
</html>

最佳答案

首先,不要使用图像来获得这种效果,因为它们会增加页面重量,需要时间下载,尤其是非常不灵活。

改用 CSS3 技术。例如,检查来源 http://ubuwaits.github.com/css3-buttons/或在 http://www.uxrevisions.com/freebies/css3-buttons-examples-with-source-code/181/ 阅读教程或任何其他可用的 CSS3 按钮教程 elsewhere

然后抓取CSS3 Pie并使其在 IE6 及更高版本中工作。

关于html - 我们如何通过使用 ie 7 的 css 将新闻效果放在 anchor 标签上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6622680/

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