在不用于图像之前应用:

时间:2014-03-28 10:40:33

标签: html css wordpress

我最近在wordpress完成了一个网站并稍微修改了一个模板。 现在我的客户想要text-links之前的元素,所以我尝试添加:之前如图所示

a:before {
    content:url('triangle.png');
    width:3px;
    height:5px;
    margin: 5px;
}

它做了什么,到目前为止效果很好:

enter image description here

但我的问题是我的网站上也有图片链接,它会让我的版面崩溃。

是否可以仅对a:before中的链接应用textarea

1 个答案:

答案 0 :(得分:0)

你试过以下:

a:before > img {
    content:"";
    width:3px; /*maybe these styles are also not necessary for your layout*/
    height:5px; /* then you can set them al to 0 */
    margin: 5px;
}