ในการเลือกองค์ประกอบทั้งหมดที่มี id=”tutorials” คุณสามารถลองเรียกใช้โค้ดต่อไปนี้
ใช้ตัวเลือก #id CSS เพื่อทำสิ่งนี้
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> #tutorials { border: 3px solid red; } </style> </head> <body> <h1>Tutorialspoint</h1> <h2>Learning</h2> <p id = "tutorials">Tutorials on web dev, programming, database, networking, etc.</p> <p>Every tutorials has lessons with illustrations and figures.</p> </body> </html>