这次给大家带来怎样操作a标签的默认样式,操作a标签的默认样式的注意事项有哪些,下面就是实战案例,一起来看一下。
代码如下:
a:link { font-size: 12px; color: #000000; text-decoration: none; } a:visited { font-size: 12px; color: #000000; text-decoration: none; } a:hover { font-size: 12px; color: #999999; text-decoration: underline; }
这样定义样式表就可以实现你的功能了,不会样式表的话,可以把下面的代码加到你的页面中
标签里:<style type="text/css"> <!-- a:link { font-size: 12px; color: #000000; text-decoration: none; } a:visited { font-size: 12px; color: #000000; text-decoration: none; } a:hover { font-size: 12px; color: #999999; text-decoration: underline; } --> </style>
相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
相关阅读:
以上是怎样操作a标签的默认样式的详细内容。更多信息请关注PHP中文网其他相关文章!