如何将徽标链接到主页并且还具有 h1 但不可见
我有这样的布局
<header id="pageHeader">
<h1>
<a href="<?php bloginfo('url'); ?>">
<?php bloginfo('name'); ?>
</a>
</h1>
然后我使用 css 将图像作为背景,但徽标没有加载,有人吗?
header#pageHeader h1 a {
width:130px;
height:70px;
text-indent:-9999px;
background:url(/pict/logo.png);
background-repeat: no-repeat;
}