Tôi đã tìm thấy mã CSS này và tôi đã chạy nó để xem nó hoạt động gì và nó phác thảo MỌI phần tử trên trang,
Ai đó có thể giải thích những gì Dấu hoa thị * làm trong CSS không?
<style>
* { outline: 2px dotted red }
* * { outline: 2px dotted green }
* * * { outline: 2px dotted orange }
* * * * { outline: 2px dotted blue }
* * * * * { outline: 1px solid red }
* * * * * * { outline: 1px solid green }
* * * * * * * { outline: 1px solid orange }
* * * * * * * * { outline: 1px solid blue }
</style>
div * { outline ...}
và* { outline ... }
. Nếu tôi sử dụng* { outline ... }
và* * { outline ... }
chỉ mô tả css cuối cùng được sử dụng.