html基础技巧
Posted naturl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html基础技巧相关的知识,希望对你有一定的参考价值。
button去除边框
border:none
border:0px(不建议)
button::after {
content: none;
}
消除a标签点击后的边框
a:focus{outline:none;}
文本省略
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 210px;
超过两行用省略号代替 -webkit-line-clamp控制
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -moz-box;
-moz-line-clamp: 2;
-moz-box-orient: vertical;
此随笔会不定期得更新,整合一些技巧,供自己和大家学习使用
以上是关于html基础技巧的主要内容,如果未能解决你的问题,请参考以下文章