我用django table2及以上链接渲染了我的表格。
我用这样的CSS来设置它:
select
substring_index(concat_ws(',', `brand`, `brand2`), ',', 1) as `brand`,
substring_index(concat_ws(',', `brand`, `brand2`), ',', -1) as `brand2`,
count(*)
from yourtable
group by case when `brand` > `brand2` then concat(`brand`, `brand2`)
else concat(`brand2`, `brand`) end
order by `brand`
它看起来像背景颜色,它显示绿色 但是字体颜色没有变白。奇怪的是它是紫色/蓝色。知道为什么吗?
提前感谢!
答案 0 :(得分:0)
它们是浏览器具有默认颜色的超链接(a
标记)。
您可以设置超链接的颜色:
对于未访问的链接
a:link {
color: red;
}
访问过的链接
a:visited {
color: green;
}
将鼠标悬停在链接
上a:hover {
color: hotpink;
}
所选链接
a:active {
color: blue;
}
或者如果你想要所有相同的颜色:
a {
color:white;
}
如果您还想删除下划线,可以将text-decoration
属性设置为none
:
text-decoration:none;