ในการสร้างรายการแบบไม่เรียงลำดับโดยไม่มีสัญลักษณ์แสดงหัวข้อย่อยโดยใช้ CSS โค้ดมีดังต่อไปนี้ -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> body{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } ul { list-style-type: none; margin: 0; padding: 0; font-size: 18px; font-weight: bold; } </style> </head> <body> <h1>Remove bullets from ul example</h1> <ul> <li>Tiger</li> <li>Giraffe</li> <li>Lion</li> </ul> </body> </html>
ผลลัพธ์
ผลลัพธ์ต่อไปนี้จะถูกสร้างขึ้นโดยรหัสข้างต้น -