Recent Posts Widget Extended(RPWE)生成帖子标题作为链接。在一个特定页面上,我想禁用标题文本周围的链接。链接的窗口小部件不会生成任何类,但有一个rel
,它应该足够具体。我添加了以下CSS:
a[rel="bookmark"] {
pointer-events: none;
cursor: default;
text-decoration-line: none !important;
font-size: 18px;
color: #000000;
}
除了删除下划线外,一切正常。看起来我不够具体?
答案 0 :(得分:0)
要删除下划线,您可以使用
a[rel="bookmark"] *{
text-decoration: none!important;
}
如果仍然没有为元素工作,可以在您尝试的孩子身上应用文字装饰:
!important
如果无法正常工作,则表示存在for (i in 1:nrow(data)) {
write.table("SomeText -- i -- some text " ..)
for (j in 1:somevalue) {
places data in the text file
}
}
的其他规则,您必须使用浏览器调试工具。
答案 1 :(得分:0)
使用浏览器中的调试工具查找text-decoration:none;正在被覆盖。通常会使用更具体的选择器。但是在这种情况下,wordpress样式表也在所有链接下使用了边框:
box-shadow: 0 1px 0 0 currentColor;
这也需要通过选择链接和样式
来禁用box-shadow: none;