我希望在我的标题中添加一个 h1 元素,但是我在标题中使用标签(不是背景图像),当屏幕分辨率发生变化时它们会相互替换。
我看过技术
<h1 class="technique-four">
<a href="#">
<img src="images/header-image.jpg" alt="CSS-Tricks" />
</a>
</h1>
h1.technique-four {
width: 350px; height: 75px;
background: url("images/header-image.jpg");
text-indent: -9999px;
}
...但是由于我的布局是流畅的,因此可以在图像更改时看到背景。
甚至有必要用图像替换 h1 吗?我不能做类似的事情:
<h1 class="headerhone">kb-k bwf-kb</h1>
<a href="#"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/720.jpg" class="show-on-phones"/></a>
<a href="#"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/980_full.jpg" class="hide-on-phones"alt=""/></a>
(忽略php)
然后给 h1 一个零高度:
h1.headerhone{
height:0px;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
} /*this was suggested to me as an alternative to the -9999px; thing.*/
这行得通吗?它会有任何负面的 SEO 影响或可用性问题吗?