这是一个非常简单的问题:
简介:我在很多网站上看到使用大量图像使用属性 text indent 来隐藏图像上的文本,通常使用 text-indent 隐藏文本。所以我猜图像上可见的文本是供最终用户查看的,而使用 text-indent 隐藏的相同文本是供搜索引擎抓取的:
这是我所说的一个例子:
.main{
text-align: center;
}
.main img{
margin-top: 100px;
height: 40%;
width: 40%;
}
.main div{
top: 0;
left: 0;
text-indent: -9999px;
}
HTML 代码:
<div class="main">
<img src="http://www.grammar.net/wp-content/uploads/2012/02/12-love-idioms_big-01.png" alt="temp image">
<div><p>Phoenix Kids Daycare Bangalore, follows a play based system integrated with a curriculum conforming to the global best teaching practices. Our focus is on interactive learning-center and sessions where children apply what they learn and learn what they apply. They then begin to take ownership for their learning and become lifelong learners.</p></div>
</div>
现在这是一种过时的做法吗?这仍然有效吗?实际上它被认为是语义的吗?
虽然这是一个相对简单的问题,但我问它的重要性,因为我希望我的身边有语义 HTML。
谢谢你。
特纳利。