Five solutions to cross-browser problems (summary)

Five solutions to cross-browser problems (summary)

Brief review: Browser compatibility issues are often a headache. Here are five tips to avoid these problems.

1. Prefix CSS3 styles

If you’re using any kind of modern CSS snippets, such as box-sizing or background-clip, make sure you use the appropriate prefixes.

-moz- /* Firefox and other browsers using the Mozilla browser engine */
-webkit- /* Safari, Chrome and other browsers using the Webkit engine */
-o- /* Opera */
-ms- /* IE browser (but not always IE) */

2. Use reset

You can use normalize.css, here is the one I use, from the Genesis Framework Style Sheet.

html,body,div,span,applet,object,iframe,h1,h2,
h3,h4,h5,h6,p,blockquote,a,abbr,acronym,address,
big,cite,del,dfn,em,img,ins,kbd,q,s,samp,small,
strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,
dd,ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
embed,figure,figcaption,footer,header,hgroup,input,menu,
nav,output,ruby,section,summary,time,mark,audio,video {
border: 0;
margin: 0;
padding: 0;
vertical-align: baseline;
}

3. Avoid padding width

When you add padding that is the width of an element, it becomes larger. The width and padding will be added together.
To fix this, you can add this:

* { -webkit-box-sizing: border-box; /* Safari/Chrome and other WebKit browsers*/
-moz-box-sizing: border-box; /* Firefox and other Gecko-based browsers*/
box-sizing: border-box; }

4. Clear float

If it is not cleaned, problems can easily occur. If you are interested, you can read this article by Chris Coyier.

This can be cleared using this CSS snippet:

 .parent-selector:after {
 content: "";
 display: table;
 clear: both;
 }

If you wrap most of your elements a very easy way to do this is to add this to your wrap class.

 .wrap:after {
 content: "";
 display: table;
 clear: both;
 }

Done!

5. Testing

Create your own cross-browser infrastructure or just use Endtest.
If you make these things a habit, you can probably solve 90% of browser problems.

Original link:

5 Tricks to Avoid Cross Browser Issues

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  A brief discussion on JavaScript shallow copy and deep copy

>>:  CSS Houdini achieves dynamic wave effect

Recommend

HTML table markup tutorial (1): Creating a table

<br />This is a series of tutorials provided...

Introduction to fourteen cases of SQL database

Data Sheet /* Navicat SQLite Data Transfer Source...

Implementation of CSS equal division of parent container (perfect thirds)

The width of the parent container is fixed. In or...

MySQL master-slave synchronization principle and application

Table of contents 1. Master-slave synchronization...

Simple steps to create a MySQL container with Docker

Preface We have already installed Docker and have...

Things to note when writing self-closing XHTML tags

The img tag in XHTML should be written like this:...

Differences between MySQL CHAR and VARCHAR when storing and reading

Introduction Do you really know the difference be...

A brief discussion on the magical uses of CSS pseudo-elements and pseudo-classes

CSS plays a very important role in a web page. Wi...

How to remove spaces or specified characters in a string in Shell

There are many methods on the Internet that, alth...

About the use of Vue v-on directive

Table of contents 1. Listening for events 2. Pass...

About the problem of writing plugins for mounting DOM in vue3

Compared with vue2, vue3 has an additional concep...

MySQL SQL statement performance tuning simple example

MySQL SQL statement performance tuning simple exa...

Detailed explanation of the seven data types in JavaScript

Table of contents Preface: Detailed introduction:...

A summary of some of the places where I spent time on TypeScript

Record some of the places where you spent time on...