Home > Article > Web Front-end > How to implement horizontal navigation tab layout using HTML and CSS
How to use HTML and CSS to implement horizontal navigation label layout
Cover image
Nowadays, many websites use horizontal navigation label layout. The layout is simple and clear, making it easy to navigate and use. This article will introduce how to use HTML and CSS to implement horizontal navigation label layout, and give specific code examples.
First, let’s take a look at the structure of HTML code. Typically, a horizontal navigation tab layout consists of an outer navigation bar container and multiple navigation tabs. Here is a simple HTML code example:
<!DOCTYPE html> <html> <head> <title>水平导航标签布局</title> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="navbar"> <ul> <li><a href="#">首页</a></li> <li><a href="#">产品</a></li> <li><a href="#">关于我们</a></li> <li><a href="#">联系我们</a></li> </ul> </div> </body> </html>
In this HTML code, we create a div element named "navbar" and nest an unordered list inside it. Each list item (li element) contains a navigation link (a element).
Next, let’s take a look at the style of the CSS code. In CSS, we can use "display: inline-block;" to achieve the effect of horizontal arrangement. The following is a simple CSS code example:
.navbar { background-color: #f1f1f1; padding: 10px; } .navbar ul { list-style-type: none; margin: 0; padding: 0; } .navbar li { display: inline-block; margin-right: 10px; } .navbar li a { text-decoration: none; color: #333; padding: 5px 10px; } .navbar li a:hover { background-color: #333; color: #fff; }
In this CSS code, we first set the background color and padding for the navigation bar container (.navbar). Next, we performed some style settings on the unordered list (ul), including removing the default style of the list items and arranging the list items horizontally.
Style settings for navigation links (a elements) include removing underlines, setting text color and padding.
Finally, we set the background color and text color for the mouseover state of the navigation link to improve the user experience.
Now, we can implement a simple horizontal navigation label layout by combining HTML and CSS code. By adjusting the styles in the CSS code, we can also design and customize further as needed.
Summary:
This article introduces how to use HTML and CSS to implement horizontal navigation label layout. Horizontal navigation tab layout is a simple and clear layout that is easy to navigate and use. By using the display: inline-block; attribute, we can easily achieve a horizontal arrangement effect. At the same time, we also provide specific HTML and CSS code examples, hoping to help you when implementing horizontal navigation label layout.
The above is the detailed content of How to implement horizontal navigation tab layout using HTML and CSS. For more information, please follow other related articles on the PHP Chinese website!