Differences in the hr separator between browsers

Differences in the hr separator between browsers
When making a web page, you sometimes use a dividing line hr, but it is very painful to display it in IE6 and IE7. This article will teach you how to write an hr that is compatible with all browsers.

Home page Let's first understand the differences between hr in various browsers, as shown in the following table:

For example, if you want to create a dividing line with an actual height of 3px, a border of 1px, a border color of #07f, and a background color of #f60:

Copy code
The code is as follows:

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 */

<<:  How MySQL supports billions of traffic

>>:  Detailed explanation of the solution to font blur when using transform in CSS3

Recommend

How to install phabricator using Docker

I am using the Ubuntu 16.04 system here. Installa...

Detailed explanation of various ways to merge javascript objects

Table of contents Various ways to merge objects (...

IIS and APACHE implement HTTP redirection to HTTPS

IIS7 Download the HTTP Rewrite module from Micros...

Vue2/vue3 routing permission management method example

1. There are generally two methods for Vue routin...

Two ways to declare private variables in JavaScript

Preface JavaScript is not like other languages ​​...

uniapp project optimization methods and suggestions

Table of contents 1. Encapsulate complex page dat...

Centos8.3, docker deployment springboot project actual case analysis

introduction Currently, k8s is very popular, and ...

Native JS encapsulation vue Tab switching effect

This article example shares the specific code of ...

Vue project @change multiple parameters to pass multiple events

First, there is only one change event. changeleve...

MySQL database constraints and data table design principles

Table of contents 1. Database constraints 1.1 Int...

Document Object Model (DOM) in JavaScript

Table of contents 1. What is DOM 2. Select elemen...

Vue uses el-table to dynamically merge columns and rows

This article example shares the specific code of ...