Sublime Text
<!DOCTYPE html> <html> <head> <title>Xem Ví dụ</title> <style type="text/css"> body{ border-style:double; } h1{ border-style:inherit; } </style> </head> <body> <h1>Hello</h1> <p>- Thuộc tính border-style của phần tử <u><h1></u> có giá trị là <u>inherit</u></p> <p>⇨ Nó sẽ kế thừa giá trị thuộc tính border-style từ phần tử cha của nó là <u><body></u></p> <p>⇨ Cho nên giá trị thật sự của nó sẽ tương ứng với <u>double</u></p> </body> </html>
<!DOCTYPE html> <html> <head> <title>Xem Ví dụ</title> <style type="text/css"> body{ border-style:double; } h1{ border-style:inherit; } </style> </head> <body> <h1>Hello</h1> <p>- Thuộc tính border-style của phần tử <u><h1></u> có giá trị là <u>inherit</u></p> <p>⇨ Nó sẽ kế thừa giá trị thuộc tính border-style từ phần tử cha của nó là <u><body></u></p> <p>⇨ Cho nên giá trị thật sự của nó sẽ tương ứng với <u>double</u></p> </body> </html>