Wordpress中的内部样式表

时间:2013-07-16 12:57:04

标签: html css image wordpress alt

我尝试了很多时间将alt属性放入内部样式表页面并使用wordpress。使用de虚拟模板图像。 但是当我把alt attrribute放在内部样式表中时,我看不到页面中的属性。 我使用montezuma模板。

<style>
    img {
      width:800px;
      height:533px;
      alt="Hola"
    }
</style>

<img src="hola.jpg"> 

谢谢!

Pd:对不起我的英语。

1 个答案:

答案 0 :(得分:2)

alt属性应放在HTML中,而不是放在CSS中。

<img src="shark.jpg" alt="shark" title="Image of an shark" />
相关问题