我有以下代码生成一个徽标,该徽标显示在正确的位置,但a href=""
为什么不起作用?
HTML:
<div class="banner">
<span><a href="<?php echo BASE_URL()?>link" title="View information about award"></a></span>
</div>
CSS:
div.banner{
width:592px;
height:1px;
position: fixed;
top:0;
right:0;
overflow: visible;
}
div.banner span{
display: block;
position: fixed;
top: 0;
right: 0;
background: url(../../../i/ribbon.png) top right no-repeat;
width: 197px;
height: 145px;
text-indent: -999em;
}
div.opens span a{
display:block;
width: 197px;
height: 145px;
}