资料下载里的源码有一个写法看不懂,请高手指点!
这个图片,源码里css将他写成了背景图,但是我不解的是为什么还要在<h1>中加<a href="#">腾讯软件中心</a>?这段文字又显示不出来。写在这里有什么意义啊?以下是源码:
<html>
<head>
<style type="text/css">
.logo h1 {
float: left;
background: url(../images/logo.gif) no-repeat;
width: 218px;
height: 63px;
text-indent: -9999px;
cursor: pointer;}
a {
color: #266392;
text-decoration: none;}
</style>
</head>
<body>
<h1><a href="http://www.baidu.com/">腾讯软件中心</a></h1>
</body>
</html>