主页
CSS
CSS 行内块
尝试:使用 display: inline-block 将列表项水平显示
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <head> <style> .nav { background-color: yellow; list-style-type: none; text-align: center; margin: 0; padding: 0; } .nav li { display: inline-block; font-size: 20px; padding: 20px; } </style> </head> <body> <h1>Horizontal Navigation Links</h1> <p>By default, list items are displayed vertically. In this example we use display: inline-block to display them horizontally (side by side).</p> <p>Note: If you resize the browser window, the links will automatically break when it becomes too crowded.</p> <ul class="nav"> <li><a href="#home">Home</a></li> <li><a href="#about">About Us</a></li> <li><a href="#clients">Our Clients</a></li> <li><a href="#contact">Contact Us</a></li> </ul> </body> </html>