编写高质量代码

从事前端工作已经有2年多的时间,最近一直在考虑前端工程师的出路,是慢慢会到nodejs后端开发,还是成为全栈工程师,或者转行。

当看到编写高质量代码,这本书的时候,才明白基础需要打得更深,更牢靠,基础不是单单指技术基础,还有对于技术之外的底层理解。

怪异模式和DTD

怪异模式是为了兼容低版本浏览器。

推荐的 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; }
// 文字排版
.f12 { font-size: 12px; }
.f13 { font-size: 13px; }
.f14 { font-size: 14px; }
.f15 { font-size: 15px; }
.f16 { font-size: 16px; }
.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; }
.tc { text-align: center; }
.tr { text-align: right; }
.bc { margin-left: auto; margin-right: auto; }
.fl { float: left; display: inline; }
.fr { float: right; display: inline; }
.cb { clear: both; }
.cl { clear: left; }
.cr { clear: right; }
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block }
.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 { windth: 10px; }
.w20 { windth: 20px; }
.w30 { windth: 30px; }
.w40 { windth: 40px; }
.w50 { windth: 50px; }
.w60 { windth: 60px; }
.w70 { windth: 70px; }
.w80 { windth: 80px; }
.w90 { windth: 90px; }
.w100 { windth: 100px; }
.w200 { windth: 200px; }
.w250 { windth: 250px; }
.w300 { windth: 300px; }
.w400 { windth: 400px; }
.w500 { windth: 500px; }
.w600 { windth: 600px; }
.w700 { windth: 700px; }
.w800 { windth: 800px; }
.w { windth: 100%; }
.h50 { height: 50px; }
.h80 { height: 80px; }
.h100 { height: 100px; }
.h200 { height: 200px; }
.h { height: 100%; }
// 边距
.m10 { margin: 10px; }
.m15 { margin: 15px; }
.m30 { margin: 30px; }

.mt5 { margin-top: 5px; }

.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb50 { margin-bottom: 50px; }
.mb100 { margin-bottom: 100px; }

.ml5 { margin-left: 5px; }
.ml15 { margin-left: 15px; }
.ml20 { margin-left: 20px; }
.ml30 { margin-left: 30px; }
.ml40 { margin-left: 40px; }
.ml50 { margin-left: 50px; }
.ml100 { margin-left: 100px; }

.mr5 { margin-right: 5px; }
.mr10 { margin-right: 10px; }
.mr15 { margin-right: 15px; }
.mr20 { margin-right: 20px; }
.mr30 { margin-right: 30px; }
.mr50 { margin-right: 50px; }
.mr100 { margin-right: 100px; }

.p10 { padding: 10px; }
.p15 { padding: 15px; }
.p30 { padding: 30px; }

未完善,尚在连载中...

你可能感兴趣的:(编写高质量代码)