.cssnav {
position:relative;
font-family: arial, helvetica, sans-serif;
background-image: url(img/twitter.jpg)no- repeat center center;
background-repeat: no-repeat;
white-space: nowrap;
display: block;
width: 211px;
height: 44px;
margin: 0;
padding: 0;
}
.cssnav a {
display: block;
color: #000000;
font-size: 11px;
width: 211px;
height: 44px;
display: block;
float: left;
color: black;
text-decoration: none;
}
.cssnav img {width: 211px; height: 44px; border: 0; }
* html a:hover {visibility:visible}
.cssnav a:hover img{visibility:hidden}
.cssnav span {
position: absolute;
left: 30px;
top: 15px;
margin: 0px;
padding: 0px;
cursor: pointer;
width: 149px;
height: 14px;
text-align: center;
}
/* END OF NAVIGATION */
}
<html>
<head>
<title>The history of aeronautics</title>
<meta charset="utf-8" />
<meta name="description" content="A parallax scrolling experiment using jQuery" />
<link rel="stylesheet" media="all" href="css/test.css" />
</head>
<body>
<!--MAIN NAVIGATION START-->
<div class="cssnav"><a href="http://www.search-this.com/" title="Search Engine Submission"><img src="img/twitter.png" alt="Search Engine Submission" /><span>Search
Engine Submission</span></a></div>
<div class="cssnav"><a href="http://www.search-this.com/website-design/" title="Website Design"><img src="img/twitter.jpg" alt="Website Design" /><span>Website
Design</span></a></div>
</body>
</html>
我已经包含了我的CSS和HTML。我已经在这一段时间试图弄清楚它为什么不起作用......我正在使用三元组翻转按钮代码:http://www.webcredible.co.uk/user-friendly-resources/css/rollover-buttons.shtml
当我将代码放在我的HTML区域中时,它会起作用,但是当我把它放在CSS
中时却没有答案 0 :(得分:0)
好的,首先,正如Mat所说,您需要添加以下链接样式表:
<link href="/fileName.css" rel="stylesheet" type="text/css" media="screen" />
在头标签中。或者你可以像这样添加样式标签(也在head标签内):
<style>
body
{
background-color: #f00;
}
</style>
除此之外,如果你仍然遇到麻烦,我会在这里看看:
http://coding.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/
关于CSS的特殊性规则,但作为一般的经验法则(我已经使用过),我似乎无法确切地指出为什么我指定要呈现的东西不会在外部渲染css文件,我将内联使用它,如下所示:
<p style="background-color: #f00;">Paragraph contents...</p>
这是因为内联CSS比外部文件的CSS具有更高的特异性(固有)。