如何建立一個(gè)含有CSS網(wǎng)站鏈接的網(wǎng)頁(yè)呢?以下教程將會(huì)簡(jiǎn)要地介紹您需要知道的步驟。
第一步,嵌套一個(gè)鏈接。
<a href="鏈接地址">鏈接名稱</a>
第二步,為鏈接添加CSS樣式。
a { text-decoration: none; color: blue; font-weight: bold; }
讓我們看看以上樣式的意思。"text-decoration"屬性從文本中刪除下劃線。"color"屬性設(shè)定了鏈接文本顏色為紅色。 "font-weight"屬性設(shè)置了文本為粗體字。
第三步,將上面的代碼嵌套到HTML文檔中。
<!DOCTYPE html> <html> <head> <title>Add CSS to a Link</title> <style> a { text-decoration: none; color: blue; font-weight: bold; } </style> </head> <body> <a >Example</a> </body> </html>
現(xiàn)在,您已經(jīng)學(xué)會(huì)了如何給網(wǎng)站鏈接添加CSS樣式了。祝大家使用愉快!