這篇文章帶給大家的內容是關於css實現橫向導航和垂直導航列的方法(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
一、垂直導航
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> ul{ list-style-type:none; margin:0; padding:0; } a{ display:block; background-color:green; color:white; width:80px; text-align:center; padding:4px; text-decoration:none; } a:hover,a:active{ background-color:#98bf21; } </style> </head> <body> <ul> <li><a herf="">首页</a></li> <li><a herf="">学习中心</a></li> <li><a herf="">考试中心</a></li> <li><a herf="">考试动态</a></li> </ul> </body> </html>
運行結果:
二、橫向導航:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> ul{ list-style-type:none; margin:0; padding:0; overflow:hidden; } li{ float:left; } a{ display:block; background-color:pink; color:white; width:80px; text-align:center; padding:4px 0px; text-decoration:none; } a:hover,a:active{ background-color:gray; } </style> </head> <body> <ul> <li><a herf="">首页</a></li> <li><a herf="">学习中心</a></li> <li><a herf="">考试中心</a></li> <li><a herf="">考试动态</a></li> </ul> </body> </html>
運行結果:
注意:
#1、a標籤的display=block讓連結是一個可點擊的區域而不是文字。
2、a連結指定為block塊元素之後可以設定寬度,讓每個連結的寬度看起來一樣。
相關建議:
div css導航條(全螢幕css導航條)_html/css_WEB-ITnose
以上是css實作橫向導航和垂直導覽列的方法(代碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!