Home > Article > Web Front-end > [Import] Beginner's div css menu_html/css_WEB-ITnose
Navigation occupies a very important position on the website. The menus in the Table era were displayed side by side with several tds.
Now, we can use semantic tags such as li to complete.
Menu 1:
list-style :none; is to remove the list symbol
#nav The ul under li must be absolutely positioned based on li. This is very important.
Because IE does not support #nav li:hover ul, I wrote a simple js to implement it. Its purpose is just to add a mouseover and mouseout event to #nav li,
and dynamically change its cssName.
Menu 2:
这二个简单的菜单主要是对Box模型的理解,最开始我也被box弄糊涂。注意margin、padding、border。