如何使用 CSS 更改聚焦連結的顏色
使用 :focus 類更改聚焦連結的顏色。可能的值可以是任何有效格式的任何顏色名稱。
示例
你可以嘗試執行以下程式碼來實現聚焦連結的顏色 −
<html> <head> <style> a:focus { color: #0000FF } </style> </head> <body> <a href = ""> This is demo link </a> </body> </html>
廣告
使用 :focus 類更改聚焦連結的顏色。可能的值可以是任何有效格式的任何顏色名稱。
你可以嘗試執行以下程式碼來實現聚焦連結的顏色 −
<html> <head> <style> a:focus { color: #0000FF } </style> </head> <body> <a href = ""> This is demo link </a> </body> </html>