CSS (Cascading Style Sheets) is a powerful tool for designing the visuals of a website. TheBlureffect is one of the many features in CSS that is used to blur any element property usingBlur. To create a soft, dreamy effect or draw attention to a specific element on the page, we can use the blur effect.
css element { filter : blur (amount) }
Before discussing the practical aspects of setting fuzzy distance, it is important to understand the concept of fuzzy distance. The amount of blur applied to an element is called the blur distance. The value can be defined in pixels (px), em, or other CSS units.
To set the blur distance in CSS, you need to use the blur attribute. The Blur property sets the amount of blur that should be applied to the element. To use the Blur attribute, we first select the element to which we want to apply the blur effect and then set the Blur attribute to the desired value.
For example, to apply a blur effect to an image, we can use the following CSS code -
img { filter : blur(5px) }
Here we have selected the "img" element and applied a 5 pixel blur effect to it.
This is a complete code example of the above method.
We can apply different fuzzy distances to different elements in the web page. To do this, we can select each element individually and set the "blur" property to the desired value. For example -
h1 { filter : blur(3px) } img { filter : blur(5px) }
Here, we have selected two elements, the first "h1" and the second "img", and applied a blur effect of 3 pixels and 5 pixels accordingly.
Applying blur distance in CSS using the 'blur' property
Applied blur distance 2 pixels in CSS using the 'blur' property
Creating a focus effect is the most common use of blur effects in CSS. This effect is achieved by applying a blur effect to all elements on the web page except the focused element.
To create a focus effect with blurred distance in CSS, use the "blur" attribute with the ":not" pseudo-class. The ':not' pseudo-class allows the user to select all elements except specific elements. For example -
.blur * { transition: all 0.5s ease-in-out; } .blur:hover *:not(.no-blur) { filter: blur(5px); }
Here, we apply the "blur" attribute to all child elements of the "blur" class when the user hovers over the "blur" class. This effect does not work on elements with class "no-blur" because using the "no" pseudo-class excludes elements with class "no-blur" from the blur effect.
This is a complete code example of the above method.
Creating a focus effect with blur distance in CSS
Hover over the below content to see the effect
Heading
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Setting blur distance in CSS is a simple and effective way to add visual appeal to your web pages. With the following examples, you can easily create blur effects on web pages.
The above is the detailed content of How to set blur distance in CSS?. For more information, please follow other related articles on the PHP Chinese website!