84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
如标题,我在制作课程表,课程编号(th)现在有连接存在,a:link怎么使用,可以给一个例子么?
认证高级PHP讲师
如果是想修饰th中的文字 就放在th中
th a:link{color:blue}
如果想修饰全部的 就放在tb中就好
td a:link{color:blue}
可以根据优先级来设置:比如:th a:link{color:blue}就比a:link{color:blue}优先级要高。权重的规则是:HTML标签的权重是1,class的权重是10,id的权重是100,嵌套的选择器=各部分权重之和。(编写高质量代码---Web前端开发修炼之道)
a:link{color:blue}
所以可以在base.css中设置全局的a:link{},然后再课程表页的私有css中设置权重高于全局的样式,比如.table a:link{}。
a:link{}
.table a:link{}
但愿我没有误解楼主的意思。
如果是想修饰th中的文字 就放在th中
如果想修饰全部的 就放在tb中就好
可以根据优先级来设置:
比如:
th a:link{color:blue}
就比a:link{color:blue}
优先级要高。权重的规则是:HTML标签的权重是1,class的权重是10,id的权重是100,嵌套的选择器=各部分权重之和。(编写高质量代码---Web前端开发修炼之道)
所以可以在base.css中设置全局的
a:link{}
,然后再课程表页的私有css中设置权重高于全局的样式,比如.table a:link{}
。但愿我没有误解楼主的意思。