search
HomeWeb Front-endFront-end Q&AStep Navigation CSS: Make web navigation more concise and clear

In today's Internet era, page navigation has become an indispensable part of web design. Step navigation is a navigation method that divides page content into multiple steps and provides users with clear guidance. It not only allows users to better understand the page structure, but also improves user operation fluency and reduces user operation difficulty. In this article, we will discuss the front-end implementation of step navigation - CSS-based step navigation.

1. Background

Step navigation is a navigation method that divides page content into multiple steps and provides clear guidance to users. This navigation method is usually used to guide users through a series of complex operations. Scenarios that often appear in Internet applications, such as registration process, order process, payment process, etc.

Let users clearly know which step they are now and what the next step is, which is the most important function of step navigation. If users clearly recognize which step of the process they are in, they will have a better understanding of what that step does and how it relates to other steps, and can confirm it before proceeding to the next step.

To achieve this goal, developers usually display step navigation in the header or sidebar of the page. And provide a selectable button for each step to prompt the user that the step is in progress or has been completed.

2. Front-end implementation - CSS-based step navigation

In CSS, this style can be used to implement a complete step navigation. In this section, we will learn how to use HTML and CSS to create CSS-based step navigation.

  1. HTML

When creating HTML code, you can use the following basic structure:

<div>
  <ul>
    <li>
      <div>
        <span>步骤1</span>
      </div>
    </li>
    <li>
      <div>
        <span>步骤2</span>
      </div>
    </li>
    <li>
      <div>
        <span>步骤3</span>
      </div>
    </li>
    <li>
      <div>
        <span>步骤4</span>
      </div>
    </li>
  </ul>
</div>

In this code snippet, we create a Step navigation in labels. In li, each step is shown with a name called "step x". Among them, x represents the number of step. We also created a div called "step" with a span nested inside it to hold the step name.

  1. CSS

In CSS, you can use the following styles to create a beautiful step navigation.

.steps-navigation {
  margin: 0;
  padding: 0;
}
.steps-navigation ul {
  list-style-type: none;
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}
.steps-navigation ul li {
  display: table-cell;
  text-align: center;
  position: relative;
}
.steps-navigation ul li .step {
  display: block;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  border: 3px solid #999;
  border-radius: 50%;
  background-color: #fff;
  margin: 30px auto;
  cursor: pointer;
  -webkit-transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.steps-navigation ul li.active .step {
  color: #fff;
  background-color: #00bcd4;
  border-color: #00bcd4;
}
.steps-navigation ul li:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ccc;
}
.steps-navigation ul li:last-child:before {
  display: none;
}
.steps-navigation ul li.active~li:before {
  background-color: #00bcd4;
}
.steps-navigation ul li:first-child .step {
  margin-left: 0;
}
.steps-navigation ul li:last-child .step {
  margin-right: 0;
}

The above code contains many styles, each with a specific purpose. This is part of understanding CSS step navigation.

  1. Style explanation

Here, we explain the styles one by one.

.steps-navigation {
  margin: 0;
  padding: 0;
}

The function of this part is to set the outer margin and inner margin of the step navigation.

.steps-navigation ul {
  list-style-type: none;
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}

The function of this part is to set the compatibility between step navigation and outer ul elements.

.steps-navigation ul li {
  display: table-cell;
  text-align: center;
  position: relative;
}

The function of this part is to set the li element contained in each step. It uses the display:table-cell style to make the li element an inline element.

.steps-navigation ul li .step {
  display: block;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  border: 3px solid #999;
  border-radius: 50%;
  background-color: #fff;
  margin: 30px auto;
  cursor: pointer;
  -webkit-transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

The function of this part is to set the "step x" and "span" elements in each step. It uses many styles to set its properties, including element width, height, border, background, and more.

.steps-navigation ul li.active .step {
  color: #fff;
  background-color: #00bcd4;
  border-color: #00bcd4;
}

The function of this part is to set the style of the selected step. When the step is active (i.e. the current step), the background color, font color, etc. will also change.

.steps-navigation ul li:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ccc;
}

The function of this part is to add horizontal dividing lines for each step.

.steps-navigation ul li.active~li:before {
  background-color: #00bcd4;
}

The function of this part is to modify the background color of its leading horizontal dividing line when the step is active (that is, the current step).

4. Summary

In this article, we discussed the use of CSS to create a front-end implementation of step navigation. Step navigation is a navigation method commonly used in Internet applications. It allows users to better understand the page structure, improve operational fluency, and reduce operational difficulty. By using the above technologies, we can create a smooth user interface for our website or application and improve user experience. Based on CSS step navigation, we can further extend the implementation, such as using JavaScript to add animation or interactive effects. I believe this will be a good choice for your web navigation design!

The above is the detailed content of Step Navigation CSS: Make web navigation more concise and clear. For more information, please follow other related articles on the 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
What is useEffect? How do you use it to perform side effects?What is useEffect? How do you use it to perform side effects?Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading.Explain the concept of lazy loading.Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits?How does currying work in JavaScript, and what are its benefits?Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

How does the React reconciliation algorithm work?How does the React reconciliation algorithm work?Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

What is useContext? How do you use it to share state between components?What is useContext? How do you use it to share state between components?Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you prevent default behavior in event handlers?How do you prevent default behavior in event handlers?Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What are the advantages and disadvantages of controlled and uncontrolled components?What are the advantages and disadvantages of controlled and uncontrolled components?Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles

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 Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.