04 2016 档案
消除a标签点击后产生的虚线框
摘要:为a标签添加这条属性: a:focus {outline:none;-moz-outline:none;} 阅读全文
posted @ 2016-04-26 09:46 Terminator404 阅读(66) 评论(0) 推荐(0)
超过既定行数时,用省略号代替的方法
摘要:1 text-overflow: ellipsis; 2 height: 35px; 3 display: -webkit-box; 4 overflow: hidden; 5 -webkit-line-clamp: 1; /*这里修改为要显示的行数*/ 6 -webkit-box-orient: vertical; 阅读全文
posted @ 2016-04-22 10:56 Terminator404 阅读(116) 评论(0) 推荐(0)
常用按钮样式
摘要:以下为css样式 以下为html部分代码 阅读全文
posted @ 2016-04-21 12:13 Terminator404 阅读(151) 评论(0) 推荐(0)
常用颜色
摘要:1 /*默认背景颜色*/ 2 .f-bgc-primary{background-color: #337ab7;} 3 .f-bgc-success{background-color: #5cb85c;} 4 .f-bgc-info{background-color: #5bc0de;} 5 .f-bgc-warning{background-color: #f0ad4e;} 6... 阅读全文
posted @ 2016-04-21 12:02 Terminator404 阅读(607) 评论(0) 推荐(0)