Home  >  Article  >  Web Front-end  >  HTML first-level navigation production

HTML first-level navigation production

高洛峰
高洛峰Original
2017-02-16 14:39:452501browse

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>
                      
    • 首页
    •                                  
    • 首页
    •                                  
    • 首页
    •                                  
    • 首页
    •                                  
    • 首页
    •             
                 

    The second step is to set the CSS style:

    1. Set the attributes of nav

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

    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;
    }

    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;
      }

       4.Set the mouse Slide over effect

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

      Final effect:

      HTML first-level navigation production

      Complete HTML code part:

      nbsp;html>
      
      	
      		<meta>
      		<title></title>
      		<link>
      	
      	
      		<p>
      			</p>

      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;
      }

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

    Statement:
    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
    Previous article:HTML tagNext article:HTML tag