链接属性
Posted john。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了链接属性相关的知识,希望对你有一定的参考价值。
链接属性
百度 淘宝 京东 |
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>链接属性</title> <style> table{ font-family: "楷体"; font-size: 33px; width: 280px; text-align: center; border-collapse: collapse; background-color: lightsteelblue; } /*按照 a:link, a:visited, a:hover,a:active顺序写*/ /*伪类别选择器*/ /*普通样式*/ a:link,a:visited{ color: darksalmon; background-color: lightsteelblue; text-decoration: none; } /*访问过的样式*/ /*a:visited{ color: darksalmon; background-color: lightsteelblue; text-decoration: none; }*/ /*鼠标悬浮在上面的样式*/ a:hover{ color: lightslategray; background-color: seagreen; } /*激活状态的样式*/ a:active{ color: red; background-color: black; } </style> </head> <body> <table> <tr> <td> <a href="http://www.baidu.com">百度</a> <a href="http://www.taobao.com">淘宝</a> <a href="http://www.JD.com">京东</a> </td> </tr> </table> </body> </html>
以上是关于链接属性的主要内容,如果未能解决你的问题,请参考以下文章
是否有标准或首选标签类型可用于向某个位置添加额外的锚点/片段链接?
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途