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;
}
相关推荐
超级土豆粉10 小时前
CSS3 的特性
前端·css·css3
lljss20201 天前
html文字红色粗体,闪烁渐变动画效果,中英文切换版本
css·html·css3
全栈陈序员2 天前
前端文件下载常用方式详解
前端·javascript·chrome·ajax·css3·html5·safari
普宁彭于晏2 天前
CSS3相关知识点
前端·css·笔记·学习·css3
站在风口的猪11082 天前
《前端面试题:CSS预处理器(Sass、Less等)》
前端·css·html·less·css3·sass·html5
lexiangqicheng2 天前
es6+和css3新增的特性有哪些
前端·es6·css3
站在风口的猪11083 天前
《前端面试题:CSS3新特性》
前端·css·html·css3·html5
喵手3 天前
CSS3 渐变、阴影和遮罩的使用
前端·css·css3
十年砍柴---小火苗3 天前
原生js操作元素类名(classList,classList.add...)
javascript·css·css3
站在风口的猪11083 天前
《前端面试题:CSS对浏览器兼容性》
前端·css·html·css3·html5