My CSS framework - base.css (reset browser default style)

My CSS framework - base.css (reset browser default style)

Copy code
The code is as follows:

@charset "utf-8";
/*
@Name: base
@Function: Reset browser default style
*/
/* Prevent users from customizing the background color of the web page and add a method to allow users to customize the font*/
html {
color:black;
background:white;
}
/* Margins usually make the styles appear differently in different browsers */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
margin:0;
padding:0;
}
/* Note that form elements do not inherit the parent font*/
body,button,input,select,textarea {
font:12px SimSun,tahoma,arial,sans-serif;
}
input,select,textarea {
font-size:100%;
}
/* Remove the margins of each Table cell and make their edges overlap*/
table {
border-collapse:collapse;
border-spacing:0;
}
/* IE bug fixed: th does not inherit text-align*/
th {
text-align:inherit;
}
/* Remove the default border */
fieldset,img {
border:none;
}
/* ie6 7 8(q) bug is displayed as inline performance*/
iframe {
display:block;
}
/* Remove the border of this element in Firefox*/
abbr,acronym {
border:none;
font-variant:normal;
}
/* consistent del style */
del {
text-decoration:line-through;
}
address,caption,cite,code,dfn,em,th,var {
font-style:normal;
font-weight:500;
}
/* Remove the mark before the list, li will inherit it*/
ol,ul {
list-style:none;
}
/* Alignment is the most important factor in typesetting, don't center everything*/
caption,th {
text-align:left;
}
/* From Yahoo, let the title be customized to adapt to multiple system applications*/
h1,h2,h3,h4,h5,h6 {
font-size:100%;
font-weight:500;
}
q:before,q:after {
content:'';
}
/* Unify superscript and subscript */
sub, sup {
font-size:75%;
line-height:0;
position:relative;
vertical-align:baseline;
}
sup {
top:-0.5em;
}
sub {
bottom:-0.25em;
}
/* Make the link underlined when hovering*/
a:hover {
text-decoration:underline;
}
/*Underline is not displayed by default to keep the page simple*/
ins,a {
text-decoration:none;
}
/* Remove the focus dot line in IE6 and 7*/
a:focus,*:focus {
outline:none;
}
/* Clear floats */
.clearfix:before,.clearfix:after {
content:"";
display:table;
}
.clearfix:after {
clear:both;
overflow:hidden;
}
.clearfix {
zoom:1; /* for IE6 IE7 */
}
.clear{
clear:both;
display:block;
overflow:hidden;
height:0;
line-height:0;
font-size:0;
}
/* Set display and hiding, usually used in conjunction with JS*/
.hide {
display:none !important;
visibility:hidden;
}
.block {
display:block !important;
}
/* Set inline to reduce bugs caused by floating */
.fl {
float:left;
display:inline;
}
.fr {
float:right;
display:inline;
}

<<:  A brief discussion on the difference between Mysql primary key index and non-primary key index

>>:  A brief discussion on whether CSS will block page rendering

Recommend

Public free STUN servers

Public free STUN servers When the SIP terminal us...

MySQL data backup and restore sample code

1. Data backup 1. Use mysqldump command to back u...

Analysis of SQL integrity constraint statements in database

Integrity constraints Integrity constraints are f...

Detailed explanation of eight methods to achieve CSS page bottom fixed

When we are writing a page, we often encounter a ...

Vue detailed explanation of mixins usage

Table of contents Preface 1. What are Mixins? 2. ...

What codes should I master when learning web page design?

This article introduces in detail some of the tech...

Introduction to the usage of common XHTML tags

There are many tags in XHTML, but only a few are ...

Mini Program to implement Token generation and verification

Table of contents process Demo Mini Program Backe...

Solution to forgetting mysql database password

You may have set a MySQL password just now, but f...

Detailed graphic tutorial on installing centos7 virtual machine in Virtualbox

1. Download centos7 Download address: https://mir...

Founder font library Chinese and English file name comparison table

Founder Type Library is a font library developed ...

Analysis of the principle of using PDO to prevent SQL injection

Preface This article uses pdo's preprocessing...

Vue+thinkphp5.1+axios to realize file upload

This article shares with you how to use thinkphp5...

Linux completely removes node.js and reinstalls it through the yum command

first step Delete it once with the built-in packa...

Implementation of mysql8.0.11 data directory migration

The default storage directory of mysql is /var/li...