我发现了一个非常好的jquery插件:http://spaceforaname.com/gallery-light.html
我想更改条带包装的边框颜色(默认为白色)
position: absolute; z-index: 1000; cursor: pointer; top: 304px; left: 74px; height: 98px; width: 98px; border: 2px solid white;
问题是边框颜色似乎是通过javascript生成的
有什么建议吗?
答案 0 :(得分:1)
该链接不起作用,但您可以尝试使用更具体的CSS甚至使用!important
,如下所示:
.wrapperwhatever{
border-color: white !important;
}
OR
body bodycontainer .wrapperwhatever{
border-color:white !important;
}