HTML first-level navigation production

高洛峰
Release: 2017-02-16 14:39:45
Original
2462 people have browsed it

Today I will share how to make a simple navigation bar:

Step one: Introduce the css style sheet, create a new layer with the id nav, and use

    ,
  • ,

    nbsp;html>
        
            <meta>
            <title></title>
            <link>
        
        
            <p>
                </p>
    Copy after login
                      
    • 首页
    •                                  
    • 首页
    •                                  
    • 首页
    •                                  
    • 首页
    •                                  
    • 首页
    •             
                 

    The second step is to set the CSS style:

    1. Set the attributes of nav

    #nav{
        width: 500px;
        height: 50px;
        border: 1px solid red;
    }
    Copy after login

    The display effect is as follows:

     HTML first-level navigation production

    2. Clear the dot in front of the

      tag

    #nav ul{
    	list-style: none;
    }
    Copy after login

    3.Set the attributes of the tag contained under

      #nav ul li a{
      	width: 98px;
      	height: 50px;
      	float: left;
      	border: 1px solid red;
      	text-align: center;
      	line-height: 50px;
      	text-decoration: none;
      }
      Copy after login

       4.Set the mouse Slide over effect

      #nav ul li a:hover{
      	background-color: #ABCDEF;
      }
      Copy after login

      Final effect:

      HTML first-level navigation production

      Complete HTML code part:

      nbsp;html>
      
      	
      		<meta>
      		<title></title>
      		<link>
      	
      	
      		<p>
      			</p>
      Copy after login

      Complete the CSS style code part:

      *{
      	margin: 0;
      	padding: 0;
      }
      #nav{
      	width: 500px;
      	height: 50px;
      	border: 1px solid red;
      	margin: 30px;
      }
      
      #nav ul{
      	list-style: none;
      }
      #nav ul li a{
      	width: 98px;
      	height: 50px;
      	float: left;
      	border: 1px solid red;
      	text-align: center;
      	line-height: 50px;
      	text-decoration: none;
      }
      
      #nav ul li a:hover{
      	background-color: #ABCDEF;
      }
      Copy after login

      Please pay attention to more articles related to HTML first-level navigation production PHP Chinese website!

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!