码迷,mamicode.com
首页 > Web开发 > 详细

css 常用

时间:2018-03-09 18:59:28      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:-o   overflow   tom   linear   ...   ext   渐变   display   parent   

超出N行文本,以...显示

.text {
    display: -webkit-box;
    -webkit-line-clamp: 3; // 行数
    -webkit-box-oritent: vertical;  // 方向
    overflow: hidden;
    text-overflow: ellipsis;
}

技术分享图片

超出N行文本,用渐变解决

.text {
  position: relative;
  overflow: hidden;
  line-height: 1.2em;
  height: 3.6em; /* exactly three lines */
}

.text:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: 1.2em;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
    80%
  );
}

技术分享图片

移动端去除点击边框

.text {
    -webkit-tap-highlight-color: transparent;
}

css 常用

标签:-o   overflow   tom   linear   ...   ext   渐变   display   parent   

原文地址:https://www.cnblogs.com/huxiaoyun90/p/8535251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!