gpt4 book ai didi

html - 如何仅使用 css 模糊目标上除 div 之外的整个 body ?

转载 作者:行者123 更新时间:2023-11-28 15:00:10 25 4
gpt4 key购买 nike

我正在努力

<!DOCTYPE html>
<html>

<head>
<title>TEST</title>
<style>
:not(:target) {
filter: blur(5px);
}
</style>
</head>

<body>
<a href="#test">test</a>
</body>

</html>

但即使我瞄准(点击)我的测试,它也会变得模糊。

最佳答案

试试这个:

body :not(:target) {
filter: blur(5px);
}

body :not(:target) {
filter: blur(5px);
}
<a href="#test">test</a>
<p id="test">This is Target</p>
<p>This is'nt Target</p>

关于html - 如何仅使用 css 模糊目标上除 div 之外的整个 body ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50322209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com