Saturday, January 18, 2020

Tìm hiểu CSS Comments

CSS Comments thường được viết để giải thích mã của bạn. Nó rất hữu ích cho người dùng đọc mã của bạn để họ có thể dễ dàng hiểu mã.
Bình luận bị bỏ qua bởi các trình duyệt.
Tìm hiểu CSS Comments

Nhận xét là tuyên bố một hoặc nhiều dòng và được viết trong /*............*/.
<!DOCTYPE html> 
<html> 
<head> 
<style> 
p { 
    color: blue; 
    /* This is a single-line comment */ 
    text-align: center; 

/* This is 
a multi-line 
comment */ 
</style> 
</head> 
<body> 
<p>Hello tienanhvn.com</p> 
<p>This statement is styled with CSS.</p> 
<p>CSS comments are ignored by the browsers and not shown in the output.</p> 
</body> 
</html>