CSS阴影优化气泡框样式

xml 复制代码
<body>
<div class="pop">气泡框</div>
</body>
css 复制代码
body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%
}
.pop{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #409eff;
  width: 150px;
  height: 70px;
  position: relative;
  border-radius: 5px;
  color: #fff;
  /** box-shadow: 0 0 10px #000;   换成filter*/
  filter: drop-shadow(0 0 10px #000) 
 /** filter表示滤镜  drop-shadow表示阴影滤镜 */
}
.pop::before{
  content: '';
  background: #409eff;
  position: absolute;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  left: -10px;
  top: 50%;
  margin-top: -10px;
}
相关推荐
AI视觉网奇5 天前
three教学 3d资产拼接源代码
前端·css·css3
神明不懂浪漫6 天前
【第三章】CSS(一)——基础选择器、CSS的属性
前端·css·html·css3
智码看视界6 天前
老梁聊全栈:CSS3 高级特性—Flex/Grid 布局体系深度解析
前端·css3·布局·flexbox·grid·工程实践·全栈工程师
gz-郭小敏7 天前
优化横向滚动展示大量数据的时候数据晃动问题
前端·javascript·html·css3
贩卖黄昏的熊8 天前
flex 布局快速梳理
开发语言·javascript·css3·html5
川冰ICE9 天前
JavaScript实战④|天气查询应用,调用API与异步处理
javascript·css·css3
2501_918126919 天前
一个上帝类程序作画
前端·css·css3
#麻辣小龙虾#10 天前
小学三年级语文小游戏
css·html·css3
Agatha方艺璇10 天前
前端开发技术复习笔记
vue·bootstrap·css3·html5·web
2501_9181269111 天前
小圆点踢足球
css·html·css3