css/sass/scss
Css
光标 caret
caret-color 光标颜色
caret-color可以用来修改光标颜色
1 | caret-color: red; |
背景
backdrop-filter 毛玻璃效果
文字
文字末端添加省略号
参考:CSS多行文本省略号
单行末端添加省略号
1 | .box{ |
多行末端添加省略号
1 | .container { |
定位
fixed无法相对父元素定位
fixed定位仅仅能相对于浏览器窗口,
可以通过设置fixed元素的margin来实现
1 | <div class="wrapper-box"> |
1 |
|
color
相对颜色语法
修改不透明度
1 | color: rgb(from #00800080 r g b / alpha); /* alpha=50% */ |