我有这个网站:
http://dl.dg-site.com/functionmentes/
这里我有一个有2个标签的滑块......它们的名字是“TAB1”和“tab2”
我想用每个标签上的不同图像替换文字
这是代码CSS:
.dnd-tabs.dnd-tabs-style1 .ui-tabs-nav li.ui-tabs-active a
{
color: #093d71;
backgroun-image:url("images/dl-products-icons5.jpg");
width:100px;
height:75px;
}
不幸的是我的代码无效......你能帮帮我吗?
答案 0 :(得分:0)
替换文字不起作用,但您可以使文字透明,如下所示:
color: rgba(0,0,0,0);
然后,您可以将背景图像设置为元素以显示图像。你可能已经发现了这一点,但你的代码中有一个拼写错误。 backgroun-image
应为background-image
(缺少'd')。