美文网首页四线城市——前端成长日志
开发网页基础-base.css(重置CSS样式)

开发网页基础-base.css(重置CSS样式)

作者: 新为向前 | 来源:发表于2018-04-02 22:03 被阅读0次

很多人认为不用重置样式,对应着写不会出现什么问题,但是开发的时候避免因为样式的开发出现BUG,事先还是要重置样式!

  • 问题出现情况:
  • 往往是开发容易,维护难。有没有想过代码的维护性;如今前端井喷式的发展,加上很多不是学前端的来开发网页,当你接手这些开发的代码,重写的时候满脸问号
  • 改这边好不好呢,改了会不会其他页面会不会以前变化
  • 所以组件化的开发还是需要在开发的时候具备

1. 什么是base.css?

  • base又名通用原子类(重置浏览器带来的样式影响)
  • 在写css文件时,一些常用的属性我们完全可以把它单独提出来,提高复用性,能增加开发效率
/*css reset*/


/*重置清除样式*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: ".";
}

abbr,
acronym {
    border: 0;
}

li {
    list-style: none;
}

a,
img {
    border: none;
    margin: 0;
}

body {
    height: auto;
    font-family: "微软雅黑", Helvetica Neue, Helvetica, Arial, sans-serif !important;
}

input,
select,
textarea {
    font-family: "微软雅黑", Helvetica Neue, Helvetica, Arial, sans-serif;
    outline: none;
    vertical-align: middle;
}

i,
b,
strong {
    font-weight: normal;
    font-style: normal;
}

a {
    text-decoration: none;
    cursor: pointer;
/*手机端点中去除选中颜色*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link,
a:hover,
a:visited,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

*html {
    background-image: url(about:blank);
    background-attachment: fixed;
}


/*兼容IE6定位抖动的*/


/*字体排版*/

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.fb {
    font-weight: bold;
}

.fn {
    font-weight: normal;
}

.t2 {
    text-indent: 2em;
}

.lh150 {
    line-height: 150%;
}

.lh180 {
    line-height: 180%;
}

.lh200 {
    line-height: 200%;
}

.unl {
    text-decoration: underline;
}

.no_unl {
    text-decoration: none;
}


/*定位*/

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.tc {
    text-align: center;
}

.bc {
    margin-left: auto;
    margin-right: auto;
}

.fl {
    float: left;
    display: inline;
}

.fr {
    float: right;
    display: inline;
}

html {
    width: 100%;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;
}


/*盒子样式*/
/*请了解清楚这行盒子模型的理解再使用
*
*/
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
/*
*
*/
.cb {
    clear: both;
}

.cl {
    clear: left;
}

.cr {
    clear: right;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

*html.clearfix {
    height: 1%;
}

.Clearfix {
    display: block;
}

.vm {
    vertical-align: middle;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.abs-right {
    position: absolute;
    right: 0;
}

.zoom {
    *zoom: 1;
}

.hidden {
    visibility: hidden;
}

.none {
    display: none;
}


/*长度宽度*/

.w10 {
    width: 10px;
}

.w20 {
    width: 20px;
}

.w40 {
    width: 40px;
}

.w60 {
    width: 60px;
}

.w80 {
    width: 80px;
}

.w100 {
    width: 100px;
}

.w200 {
    width: 200px;
}

.w260 {
    width: 260px;
}

.w400 {
    width: 400px;
}

.w600 {
    width: 600px;
}

.w800 {
    width: 800px;
}

.w {
    width: 100%;
}

小结

  • 有些人觉得不用重置样式,我其实是这样理解的,虽然有些样式不一定会用到,会浪费一些资源,但是有时候开发时间很急的时候,不一定想的起来,这样省时间。
  • 上面的样式是我日常用的,如果有补充我会重新发布文章
  • 有些样式不经常用的我已经删除了
  • 如果你们用不习惯可以更改命名,变成自己的样式

相关文章

  • 开发网页基础-base.css(重置CSS样式)

    很多人认为不用重置样式,对应着写不会出现什么问题,但是开发的时候避免因为样式的开发出现BUG,事先还是要重置样式!...

  • base.css样式重置

    @charset "utf-8";/* css初始化 /html,body,p,h1,h2,h3,h4,h5,h6...

  • css reset

    重置样式:css reset 概述 重置样式,清除浏览器默认样式,并配置适合设计的基础样式(强调文本是否大多是粗体...

  • HTML 基础

    HTML 基础 web 前端开发需要掌握:html、css样式、JavaScript语言 。 HTML是网页内容的...

  • HTML 基础(一)

    HTML 基础 web 前端开发需要掌握:html、css样式、JavaScript语言 。 HTML是网页内容的...

  • CSS样式规范

    1.样式文件命名 公用样式文件命名基本公用样式:base.css布局,版面:layout.css表单:form.c...

  • 15个国外最流行的CSS框架

    摘要:CSS框架通常指的是一些CSS文件的集合,这些文件包括网页的基本布局、表单样式、网格或简单结构、以及样式重置...

  • day02

    知识要点梳理 1.常用的HTML标签 2.CSS常用选择器 3.CSS样式:修饰HTML网页 4.样式重置 5.水...

  • 第三天学习html

    html基础 网页=html + css + javascript (框架+样式style+效果) htlm 网页...

  • 2019-03-15 CSS代码规范:

    css规范: <仅为个人笔记,不喜勿喷。欢迎留言指教> 1.CSS共用样式放在base.css 2.常见的样式co...

网友评论

    本文标题:开发网页基础-base.css(重置CSS样式)

    本文链接:https://www.haomeiwen.com/subject/bwsdcftx.html