css 样式记录

59 阅读1分钟
关于某些样式总是记不住 所以写在这 下次用到的时候可以直接过来拿

image.png

1.背景色增加透明度

//这个总是记不住
background-color: rgba($color: #00062A, $alpha: 0.7);
background-color: rgba(0,255,5,0.7);

2.边框色渐变

3.滚动条样式

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 32px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 32px;
}

文本溢出显示省略号

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;