css hr refers to the
tag, which defines theme changes in the HTML page and is displayed as a horizontal line; the
element is used to divide the content in the HTML page or define a change .
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.
css hr What does it mean? The
Differences between HTML 4.01 and HTML5
In HTML5,
In HTML 4.01, the
In HTML 4.01, all layout attributes are obsolete. These attributes are no longer supported in HTML5. Use CSS to style the
Differences between HTML and XHTML
In HTML, the
In XHTML, the
Attributes
Code example:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <h1>HTML</h1> <p>HTML 是用于描述 web 页面的一种语言。</p> <hr> <h1>CSS</h1> <p>CSS 定义如何显示 HTML 元素。</p> </body> </html>
Effect:
Recommended learning: "css video tutorial"
The above is the detailed content of css hr what does it mean. For more information, please follow other related articles on the PHP Chinese website!