Good morning,
I have a column with text in it - I would like it so when you roll over the column the background blurs but not the text.
I know you could have a effect blur on rollover but that effects the text too. I also can see you could have the background already blurred using:
.x-bg {
-webkit-filter: blur(4px);
filter: blur(4px);
}
but if I do this it does not work:
.x-bg {
-webkit-filter: blur(0px);
filter: blur(0px);
}
.x-bg:hover {
-webkit-filter: blur(4px);
filter: blur(4px);
}
I look forward to your thoughts
Thank you,
Jason