Home > Article > Web Front-end > What are the differences between the dividing line hr in different browsers?
This time I will bring you the difference between the dividing line hr in different browsers. What are the precautions when using the dividing line hr in different browsers. The following is a practical case. Let’s take a look. .
Homepage Let’s first understand the differences in hr under various browsers, as followsTable:
For example, if you want to create a page with an actual height of 3px, a border of 1px, and a border color The dividing line is #07f and the background color is #f60:
hr{ height:1px; background-color:#f60; border:1px solid #000; *height:3px;/* for ie6 ie7 */ color:#f60;/* for ie6 ie7 */ } @-moz-document url-prefix(){ hr{height:3px;}} /* for firefox */
I believe you have mastered the method after reading these cases. For more exciting content, please pay attention to other related articles on the PHP Chinese website!
Related reading:
How to set the focus of an html element
htmlHow to control its properties when opening a new window with a hyperlink
How to use progressive enhancement and graceful degradation in css3
The above is the detailed content of What are the differences between the dividing line hr in different browsers?. For more information, please follow other related articles on the PHP Chinese website!