您的位置:首页 > 新闻 > 资讯 > 【总结】CSS(SCSS) 不常用属性

【总结】CSS(SCSS) 不常用属性

2025/1/1 8:17:19 来源:https://blog.csdn.net/weixin_48958486/article/details/141561081  浏览:    关键词:【总结】CSS(SCSS) 不常用属性

1、设置 antd Meta 组件中 title 过长自动换行:

  .ant-card-meta-title {white-space: normal; /* 允许文本换行 */overflow: visible; /* 防止内容被截断 */text-overflow: clip; /* 禁用文本省略号 */}

2、选择器书写:

  .QR {&:hover {}}

3、设置文字渐变色:

.slogan {width: 768px;height: 75px;background-image: linear-gradient(260.41deg, #b2a3ea -23.42%, #20cac0 59.93%, #8ad4a8 103.95%);background-clip: text; /* 背景裁剪到文本 */color: transparent; /* 文本颜色设置为透明,以显示背景 */}

4、设置 fixed header 背景的模糊度:

  .header {background-color: rgba(195, 242, 239, 0.9);backdrop-filter: blur(10px); /* 设置模糊度 */z-index: 200;
}

 5、背景 ui 元素位置与 button 重叠,虽然显示在 button 下方,但会阻碍 button 的 click 活动:

   .circle {pointer-events: none;}

这样ui元素就不会接收鼠标事件,点击事件会穿透 circle 到达 button

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com