必威体育Betway必威体育官网
当前位置:首页 > IT技术

精简版reset.css

时间:2019-10-02 16:15:36来源:IT技术作者:seo实验室小编阅读:50次「手机版」
 

reset.css

前言:总结前辈的经验,写最精简实用的东西。相比于以前的reset重置,省去了太多东西

有一些reset感觉还是少了一下,也许大神的想法和我们的不一样。

我其实想站在别人的肩膀看得更远。

比如1)a标签默认有下划线,这里是没有进行取消下划线的重置。

比如2)input type=number时,框中还是有上下箭头按钮。

比如3)。。。

总结:按需求添加重置。也许需求不会有上面两种情况呢,对吧

body{
    line-height:1.4;
    color:#333;
    font-family:arial;
    font-size: 12px;
}
input,textarea,select{
    font-size:100%;    
    font-family:inherit;
}
body,h1,h2,h3,h4,h5,h6,p,ul,ol,form{
    margin:0;
}
h4,h5,h6{
    font-size:1em;
}
ul,ol{
    padding-left:0; 
    list-style-type:none;
}
img{border:0;}

以前的reset重置(治不好的强迫症)

 html,body,p, span, APPlet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
h1, h2, h3, h4, h5, h6, p,dl, dt, dd, ol, ul, li,a,i,b,span,table,thead,tbody,th,td,input{
	text-decoration:none;color:#666;
	font-family: "helvetica Neue",Helvetica,Arial,"Microsoft Yahei UI","Microsoft YaHei",SimHei,"宋体",simsun,sans-serif;font-weight: normal;
}

html {
     color:#000;
     background:#F3FbFe;
     
 }

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;
    font-variant:normal;
}
sup {
    vertical-align:text-top;
}
sub {
    vertical-align:text-bottom;
}
input,textarea,select {
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
}
input,textarea,select {
    *font-size:100%;
}
input[type=number]::-webkit-inner-spin-button,  
input[type=number]::-webkit-outer-spin-button {  
    -webkit-appearance: none;  
}  
input[type=number]{-moz-appearance:textfield;}
input[type=date]::-webkit-inner-spin-button,  
input[type=date]::-webkit-outer-spin-button {  
    -webkit-appearance: none;  
}  
input[type=date]{-moz-appearance:textfield;}
/*because legend doesn't inherit in IE */
legend {
    color:#000;
}
a:focus,a:hover{
	text-decoration: none;
}
input,a{
    box-sizing: border-box;
}

再次总结:在精简reset中,根据项目需求,有什么需要新添加的reset,在完整版中(我自己定义的,哈哈)查找添加

疑惑:*{box-sizing:border-box;}加在精简版的reset中真的好吗????

                                    

相关阅读

css:a:visited限制

:active对于:active伪类可以在p上生效。没有限制:visited使用限制:visited只适用于带href的a标签。如果给a标签绑定了click事件,那

输入 netsh winsock reset ; 重启电脑,

系统Win7要用【管理员身份】打开cmd ;输入 netsh winsock reset ;命令要重启电脑才会生效,winsock是Windows网络编程接口,winsock工作

CSS 按钮button美化

.login-button { /* 按钮美化 */ width: 270px; /* 宽度 */ height: 40px; /* 高度 */ border-width: 0px; /* 边框宽度 */ b

ManualResetEvent的理解和使用

class Program { static void Main(string[] args) { //注意:ManualResetEvent可以对所有进行等

css3几种常见的翻页特效

翻页特效 html: <p class="book preserve-3d"> <p class="now_page point"> <p class="book-page"> <p>第三页</p

分享到:

栏目导航

推荐阅读

热门阅读