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;
}
相关推荐
binnnngo4 小时前
网页计算器的实现
javascript·css3·html5
早起解决80%人生问题11 天前
使用CSS生成小三角
前端·css·css3
安冬的码畜日常2 天前
【CSS in Depth 2 精译】2.2 em 和 rem + 2.2.1 使用 em 定义字号
前端·css·css3
Catherinemin2 天前
CSS|04 复合选择器&伪类选择器&属性选择器&美化超链接
css·css3·html5
*neverGiveUp*3 天前
02.可视化大屏分解动画
前端·vue·css3
xiaoshengjinbu3 天前
div+css 设备看板样式
前端·css·html·css3
Yehger4 天前
css 修改 input range 样式
前端·css·css3
yunchong_zhao4 天前
css3实现水纹进度条
前端·css·css3
二狗子的翠花5 天前
css 流动边框
javascript·css·css3
双木桑德斯5 天前
css_21_css3文本属性
前端·css·css3