可以通过在table标签中设置css样式以控制td内部的链接吗?

2025-01-18 18:19:10
推荐回答(3个)
回答1:











文字
文字
文字
文字

这是表格外的链接

回答2:

可不可以这样:


或者这样:
table.style1{

...

}
....

楼主想要达到什么目的呢?

回答3:

style1{
a:link {
color: #000000; text-decoration: none
}
a:visited {
color: #000000; text-decoration: none
}
a:hover {
color: #ff0000; text-decoration: underline
}
a:active {
color: #666666
}
}