這次帶給大家怎樣操作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; }
這樣定義樣式表就可以實現你的功能了,不會樣式表的話,可以把下面的程式碼加到你的頁面中
< ;/head>標籤裡:<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中文網其他相關文章!