Home Web Front-end HTML Tutorial [Review the past and learn the new] Use CSS to design website navigation bar_html/css_WEB-ITnose

[Review the past and learn the new] Use CSS to design website navigation bar_html/css_WEB-ITnose

Jun 24, 2016 am 11:55 AM

1. Preview of the navigation menu effect for background change:

  • Homepage
  • Company Channel
  • Latest News
  • Room introduction
  • Hotel service
  • Leisure and entertainment
  • Travel agency
  • Source code:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>实现背景变换的导航菜单</title><!--利用#nav 定义div的样式,包括宽度、右边框、填充的符合属性、字体、字号、背景颜色和字体颜色利用#nav ul 定义 div 下的 ul 对象的样式,包括列表属性 list-style、边距 margin、填充 padding、边框 border 属性利用#nav li 定义 li 对象的样式利用#nav li a 定义 li 对象下的链接文字样式利用#nav li a:hover 定义 li 对象下的链接文字激活样式 ---><style type="text/css">#nav {    width:150px;    border-right:1px solid #000;    padding:0 0 1em 0;    margin-bottom:1em;    font-family:"宋体";    font-size:13px;    background-color:#ff9933;    color:#000000;}#nav ul {    list-style:none;    margin:0;    padding:0;    border:none;}#nav li {    margin:0;    border-bottom:1px solid #ffff00;}#nav li a {    display:block;    padding:5px 5px 5px 0.5em;    background-color:#ff9933;    color:#fff;    text-decoration:none;    width:100%;    border-right:10px solid #ffcc00;    border-left:10px solid #ffcc00;}html>body #nav li a {    width:auto;}#nav li a:hover {    background-color:#ffcc00;    color:#fff;    border-right:10px solid #ff00ff;    border-left:10px solid #ff00ff;}</style></head><body><div id="nav">  <ul>    <li><a href="#nav">首页</a></li>    <li><a href="#nav">公司频道</a></li>    <li><a href="#nav">最新动态</a></li>    <li><a href="#nav">客房介绍</a></li>    <li><a href="#nav">酒店服务</a></li>    <li><a href="#nav">休闲娱乐</a></li>    <li><a href="#nav">旅行社</a></li>  </ul></div></body></html>
    Copy after login

    2. Use CSS to create horizontal navigation

    Effect preview:

  • Homepage
  • Company Channel
  • Latest News
  • Room Introduction
  • Hotel Services
  • Leisure and Entertainment
  • Travel Agency
  • Source code:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>利用CSS制作横向导航</title><!--首先定义了ul 下li 对象,给#navh li 指定了 float:left 属性,所有的li对象都向左浮动,从而形成横向的排列形式导航的关键在于a 链接对象的样式控制,在这里使用#navh li a{} 给li 下的每一个a 链接对象编写了样式display:block 使得a 链接对象的显示方式由一段文本变为一个块状对象,这样就可以使用CSS的外边距、内边距、边框等属性给a 链接标签加上一系列样式--><style type="text/css">#navh li{ float:left;}#navh ul {    list-style:none;    margin:0;    padding:0;    border:none;}#navh li a { color:#ffffff; text-decoration:none; padding-top:4px; display:block; width:65px; height:20px; text-align:center; background-color:#6600cc; margin-left:2px; }#navh li a:hover{ background-color:#9999ff; color:#ffffff;}</style></head><body><div id="navh">  <ul>    <li><a href="#navh">首页</a></li>    <li><a href="#navh">公司频道</a></li>    <li><a href="#navh">最新动态</a></li>    <li><a href="#navh">客房介绍</a></li>    <li><a href="#navh">酒店服务</a></li>    <li><a href="#navh">休闲娱乐</a></li>    <li><a href="#navh">旅行社</a></li>  </ul></div></body></html>
    Copy after login

    Source: Chapter 13.3 of "HTML, CSS, Javascript Web Page Production from Beginner to Master"

    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

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

    The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

    How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

    This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

    How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

    The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

    What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

    The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

    What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

    Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

    What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

    The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

    What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

    The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

    How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

    This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

    See all articles