ตัวเลือก CSS * เป็นตัวเลือกสากลที่ใช้เพื่อเลือกองค์ประกอบทั้งหมดของ HTML DOM
ไวยากรณ์
ไวยากรณ์สำหรับตัวเลือกสากล CSS มีดังต่อไปนี้ -
* {
/*declarations*/
} ตัวอย่างต่อไปนี้แสดงให้เห็นถึงตัวเลือกสากล CSS -
ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 15px;
padding: 5px;
border: 2px solid black;
box-shadow: inset 30px 0 8px lightblue;
}
</style>
</head>
<body>
<table>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html> ผลลัพธ์

ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 15px;
padding: 5px;
width: 200px;
border: 2px solid black;
}
html::before {
content: "one";
}
</style>
</head>
<body>
two
<div>three
<div>four
<div>five</div>
</div>
</div>
</body>
</html> ผลลัพธ์
