标签:css

css

css 背景色渐变从上到下

css 背景色渐变从上到下
css要实现从上到下颜色渐变的遮罩,从深色逐渐变为浅色。 background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0) 100%); ...

yekong 2年前 (2022-10-08) 1185℃ 0喜欢

css

css横向滚动条样式

css横向滚动条样式
//横向horizontal .horizontalScroll::-webkit-scrollbar { width: 100%; height: 10px; } /*滚动条滑块*/ .horizontalScroll::-webkit-scrollbar-thu...

yekong 2年前 (2022-04-23) 1119℃ 1喜欢

css

css 禁止点击

css 禁止点击
鼠标不可点击时的显示状态 cursor: not-allowed 禁止触发点击事件 pointer-events:none ...

yekong 2年前 (2022-03-02) 1039℃ 0喜欢

css

css 实现旋转90°

css 实现旋转90°
.expand { transform: rotate(90deg); -ms-transform: rotate(90deg); /* Internet Explorer 9*/ -moz-transform: rotate(90deg); /* Firef...

yekong 2年前 (2022-01-16) 1357℃ 0喜欢