initial trong css? initial in css?

Initial là một từ khóa trong css? No dùng để trả về thiết lập mặc định của một đối tượng và thuộc tính cụ thể nào đó. Ví dụ khi ta thiết lập một thuộc tính máu(color) cho một thẻ <div> là màu đỏ(red) và không đó có chứa thẻ <h1> và ta không muốn thẻ <h1> này có màu đó mà là màu mặc định ban đầu của thể thì ta sẽ sử dụng thông số này cho the <h1>.

*Note: Một điều cần lưu ý là từ khóa(keyword) initial không hỗ trợ trên Internet Explorer và Opera từ version 15 trờ về trước.

<!DOCTYPE html>
<html>
<head>
<style>
div {
    color: red;
}

h1  {
    color: initial;
}
</style>
</head>
<body>

<div>
  <h1>Initial</h1>
  <p>The header and this text is inside a DIV element, which has the color property set to "red". The header element has its color property set to "initial", which in this case is "black".</p>
</div>

<p><b>Note:</b> The initial keyword is not supported as a property value in Internet Explorer, or in Opera before version 15.</p>

</body>
</html>




No comments:

Post a Comment