Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

ลิงก์กึ่งกลางในแถบนำทางด้วย CSS


หากต้องการจัดลิงก์ให้อยู่ในแถบนำทาง คุณต้องเพิ่ม 'text-align:center' ไปที่

  • ตัวอย่าง

    <!DOCTYPE html>
    <html>
       <head>
          <style>
             ul {
                list-style-type: none;
                margin: 0;
                padding: 0;
                width: 200px;
             }
             li a {
                display: block;
                background-color: #F0E7E7;
             }
             .active {
                background-color: #4CAF50;
                color: white;
             }
             li {
                text-align: center;
                border-bottom: 1px solid #555;
             }
          </style>
       </head>
       <body>
          <ul>
             <li><a href = "#home">Home</a></li>
             <li><a href = "#company" class = "active">Company</a></li>
             <li><a href = "#product">Product</a></li>
             <li><a href = "#services">Services</a></li>
             <li><a href = "#contact">Contact</a></li>
          </ul>
       </body>
    </html>