


Detailed graphic explanation on how to arrange the li elements in ul horizontally (with code)
In page layout, we often use the li tag, because the li tag is very versatile. It can be used to make lists, tabs, navigation, etc. But the li in the
- tag is arranged vertically by default, so can we arrange the li horizontally? This article will introduce to you two methods to achieve horizontal arrangement of ul lists in HTML. Friends in need can refer to it, I hope it is useful to you.
The horizontal arrangement of ul lists is often used in navigation. Next, we will use a horizontal navigation example to talk about how to use CSS to arrange ul horizontally.
Note:
1. There are small dots in front of the li list by default. Sometimes you need to remove the redundant small dots for the sake of beauty. You can use list- in CSS. With the attribute style:none, you can of course add some pictures in front of the list.
2. In order to make the page more attractive, navigation generally uses pseudo-class elements. The most common one is hover, which can change the background color, font size, pictures, etc. of the navigation when the mouse passes over it. wait.
3. Cleverly use the display attribute in CSS. If you need to make the li have height and width and adjust the position of the menu content, you must set the display attribute value to block. After turning it into a block-level element, attributes such as padding and text-align will take effect.
1. display:inline realizes the horizontal arrangement of ul
Use ul li to make a horizontal navigation, so that the background color changes when the mouse passes by. The code is as follows:
HTML part:
<ul id="nav"> <li><a href="#">首页</a></li> <li><a href="#">课程介绍</a></li> <li><a href="#">师资力量</a></li> <li><a href="#">新闻动态</a></li> <li><a href="#">联系我们</a></li> </ul>
CSS part:
<style type="text/css"> #nav { margin: 50px auto; height: 40px; background-color: #690; } #nav ul { list-style: none; margin-left: 50px; } #nav li { display: inline; } #nav a { line-height: 40px; color: #fff; text-decoration: none; padding: 20px 20px; } #nav a:hover { background-color: #060; } </style>
Rendering:
The effect of the mouse passing over:
2. float: left to realize the horizontal arrangement of ul
Use float: left to realize the horizontal arrangement of ul. After li floats, it will break away from the standard flow and will not occupy any position. If its parent element has a specific style and does not have a fixed width and height, you need to clear the float of the parent element or set a fixed width and height. The HTML part is the same as above, and the CSS part is as follows:
<style type="text/css"> #nav { height: 40px; margin-top: 50px; background-color: #690; } #nav ul { list-style: none; margin-left: 50px; } #nav li { display: block; float: left; } #nav a { line-height: 40px; display: block; color: #fff; text-decoration: none; padding: 0 20px; } #nav a:hover { background-color: #060; } </style>
The effect is the same as above, but the method is different.
Summary: Both float:left and display:inline can realize the horizontal arrangement of ul li. The specific method to choose depends on personal habits and project needs. Beginners can try it by themselves. I hope it can help you.
The above is the detailed content of Detailed graphic explanation on how to arrange the li elements in ul horizontally (with code). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text
