分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

css的reset和常用的html标签的默认样式整理

发布时间:2023-09-06 02:34责任编辑:郭大石关键词:暂无标签

  先看下常用的这些标签浏览器的默认样式有哪些:

    

body{ margin: 8px;}hr{ border:1px inset; margin-top:.5em;margin-bottom:.5em;}blockquote{margin: 16px 1em;}ul{list-style-type: disc;padding-left:40px;margin: 1em 0;}ol{list-style-type: decimal; padding-left:40px; margin:1em 0;}dl{ margin: 1em 0;}dd{ margin-left:40px;}pre{ margin: 1em 0;}fieldset{margin: 0 2px; border: 2px groove threedface;border-image: initial;padding:.35em .75em .625em;}input,textarea,select,button{font: 400 13.333px Arial;}button{padding:1px 6px;border:2px outset buttonface; background-color:buttonface;color:buttontext;}input{ padding:1px 0;border:2px inset initial;}textarea{padding:2px; border:1px solid rgb(169,169,169); resize:auto;}th,td{padding:1px;}h1,h2,h3,h4,h5,h6{font-weight:bold;}h1{ font-size:2em;margin:.67em 0;}h2{ font-size:1.5em; margin:.83em 0;}h3{ font-size:1.17em; margin: 1em 0;}h4{ margin: 1.33em 0;}h5{ font-size:.83em; margin: 1.67em 0;}h6{ font-size:.67em; margin: 2.33em 0;}

  当然这里列举的都是常用的标签,那些不常用的或者是已经快被淘汰的就没列出来。

  根据上面的默认样式,我们就可以有目标的去写reset里面需要重置哪些样式:

    1,body的margin

    2,ul,ol 的margin和padding

    3,dl, dd 的margin

    4,pre的margin ,这里pre还有一点要注意,就是它的font-size默认是13px,也可以重置下

    5,fieldset的margin

    6,input,textarea,select,button的font, border ,    textarea的resize, 

    7,th,td的padding

    8, h1-h6我觉得不用重写,默认的font-weight和font-size设定的很好,margin上面可写可不写,我觉得设定的也没问题。

由此 ,我便生成了自己的 reset.css,很简洁,没有使用通配符 *  。

    

body,ul,ol,dl,dd,pre,fieldset{ ???margin:0;}ul,ol{ ???padding:0; ???list-style:none;}input,textarea,select,button{ ???font-family:‘Helvetica Neue‘,Tahoma,Arial,PingFangSC-Regular,‘Hiragino Sans GB‘,‘Microsoft Yahei‘,sans-serif; ???font-size:100%; ???box-sizing:border-box;}pre{ ???font-size:1em;}table{ ???border-collapse: collapse; ???border-spacing: 0;}a{ ???text-decoration: none;}a:hover{ ???text-decoration: underline;}

当然,这只是我自己习惯用的reset,比如有些人就是喜欢把 box-sizing设置为border-box, 觉得那样计算起来很方便,我这里就没有使用通配符给所有元素都设置, 只给了几个表单元素。

这就是萝卜白菜各有所爱了,当时间长后,你肯定会生成自己的reset。 

css的reset和常用的html标签的默认样式整理

原文地址:https://www.cnblogs.com/wjyz/p/10489910.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved