CSS删除一个孩子的模糊滤镜[重复]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS删除一个孩子的模糊滤镜[重复]相关的知识,希望对你有一定的参考价值。

我给父元素一个模糊滤镜,但是我想删除一个孩子中的滤镜,请告诉我我该怎么办?

    <div class="left__card">
     <div class="left__card--head">
      <img src="../images/Rawand.jpg" alt="Img" />
     </div>
     <div class="left__card--body">
      <div class="row">
       <h1 class="Name">Rawand Rebwar</h1>
       <h2 class="stage">2'nd Stage</h2>
      </div>
      <p class="paragraph">
       Im computer science student in university of sulaimany , i developed front end for
       this project..
      </p>
      <a href="#" class="profile">Click To See Profile</a>
     </div>
    </div>

及其CSS代码

`
.left__card:hover 
    -webkit-filter: blur(3px)
    -moz-filter: blur(3px)
    -o-filter: blur(3px)
    filter: blur(3px)

`

然后我想删除课程资料上的模糊内容,请帮助

答案
将您的Card内部放入一个自己的容器,然后将过滤器分配给该容器。链接应放在外面。

<div class="left__card"> <div class="blurry"> <div class="left__card--head"> <img src="../images/Rawand.jpg" alt="Img" /> </div> <div class="left__card--body"> <div class="row"> <h1 class="Name">Rawand Rebwar</h1> <h2 class="stage">2'nd Stage</h2> </div> <p class="paragraph"> Im computer science student in university of sulaimany , i developed front end for this project.. </p> </div> </div> <a href="#" class="profile">Click To See Profile</a> </div>

.left__card:hover .blurry 
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  filter: blur(3px);

以上是关于CSS删除一个孩子的模糊滤镜[重复]的主要内容,如果未能解决你的问题,请参考以下文章

CSS3滤镜模糊关键帧动画

CSS滤镜

使用 CSS 模糊背景滤镜元素的边缘

CSS滤镜filter

请教CSS,在有背景图的背景层上使用模糊滤镜,把内层的文字也模糊了,求不模糊文字的方法?

在 iOS 中应用模糊滤镜时如何从图像中删除黑色阴影矩形?