1. 程式人生 > >css 常用

css 常用

position pla relative rgb mage info lines tom css

超出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 常用