เราสามารถเขียนความคิดเห็นสำหรับการประกาศ CSS เพื่อช่วยปรับปรุงความสามารถในการอ่านและทำให้เข้าใจง่ายขึ้น CSS เป็นไปตามรูปแบบภาษา C สำหรับความคิดเห็นที่ขึ้นต้นและลงท้ายด้วยเครื่องหมายทับระหว่างเนื้อหาที่อยู่ในเครื่องหมายดอกจัน การประกาศใดๆ ที่เขียนอยู่ภายใน /**/ จะถูกละเว้น
ไวยากรณ์
ไวยากรณ์ของความคิดเห็น CSS มีดังต่อไปนี้ -
/*Comments*/
ตัวอย่างต่อไปนี้แสดงข้อคิดเห็น CSS -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> ul { list-style: none; /*To remove the solid circles*/ } </style> </head> <body> <ul> <li>Σ1</li> <li>Σ2</li> <li>Σ3<li> </ul> </body> </html>
ผลลัพธ์
สิ่งนี้ให้ผลลัพธ์ต่อไปนี้ -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> div {/*this <div> selects all >div> elements and the declares the following*/ margin: 8px; float: left; width: 100px; height: 100px; /*border: 2px solid black;*/ /*removed border*/ background-color: lightpink; } div + div { /*this makes a circle*/ border-radius: 50%; } </style> </head> <body> <div></div> <div></div> </body> </html>
ผลลัพธ์
สิ่งนี้ให้ผลลัพธ์ต่อไปนี้ -