Home Web Front-end CSS Tutorial How to Achieve Defined Edges with CSS3 Blur Filter?

How to Achieve Defined Edges with CSS3 Blur Filter?

Nov 16, 2024 pm 04:46 PM

How to Achieve Defined Edges with CSS3 Blur Filter?

Achieving Defined Edges with CSS3 Filter Blur

Incorporating CSS3 filters to blur images enhances visual effects. However, the default blur filter extends beyond the image boundaries, resulting in blurred edges. To maintain defined edges while blurring the image, explore the following solution:

Solution:

Enclosing the blurred image within a

element with overflow: hidden; attribute prevents the filter from spilling over the parent element. Additionally, adjusting the margins, as seen in the demo code below, keeps the edges sharp.

Demo:

[Image of desired output with defined edges and blurred background]

CSS:

img {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    margin: -5px -10px -10px -5px;
}

div {
    overflow: hidden;
}

HTML:

<div><img src="http://placekitten.com/300" /></div>

The above is the detailed content of How to Achieve Defined Edges with CSS3 Blur Filter?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

ArtGPT

ArtGPT

AI image generator for creative art from text prompts.

Stock Market GPT

Stock Market GPT

AI powered investment research for smarter decisions

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to create a dropdown menu with pure CSS How to create a dropdown menu with pure CSS Sep 20, 2025 am 02:19 AM

Use HTML and CSS to create drop-down menus without JavaScript. 2. Trigger the submenu display through the :hover pseudo-class. 3. Use nested lists to build a structure, and set the hidden and suspended display effects in CSS. 4. Transition animation can be added to improve the visual experience.

How to prevent images from stretching or shrinking with CSS How to prevent images from stretching or shrinking with CSS Sep 21, 2025 am 12:04 AM

Useobject-fitormax-widthwithheight:autotopreventimagedistortion;object-fitcontrolshowimagesfillcontainerswhilepreservingaspectratios,andmax-width:100%;height:autoensuresresponsivescalingwithoutstretching.

How to use the pointer-events property in CSS How to use the pointer-events property in CSS Sep 17, 2025 am 07:30 AM

Thepointer-eventspropertyinCSScontrolswhetheranelementcanbethetargetofpointerevents.1.Usepointer-events:nonetodisableinteractionslikeclicksorhoverswhilekeepingtheelementvisuallyvisible.2.Applyittooverlaystoallowclick-throughbehaviortounderlyingelemen

How to add a box shadow effect with CSS How to add a box shadow effect with CSS Sep 20, 2025 am 12:23 AM

Usethebox-shadowpropertytoadddropshadows.Definehorizontalandverticaloffsets,blur,spread,color,andoptionalinsetforinnershadows.Multipleshadowsarecomma-separated.Example:box-shadow:5px10px8pxrgba(0,0,0,0.3);createsasoftblackshadow.

How to apply a filter to an image with CSS How to apply a filter to an image with CSS Sep 21, 2025 am 02:27 AM

TheCSSfilterpropertyallowseasyimagestylingwitheffectslikeblur,brightness,andgrayscale.Usefilter:filter-function(value)onimagesorbackgroundimages.Commonfunctionsincludeblur(px),brightness(%),contrast(%),grayscale(%),saturate(%),andhue-rotate(deg).Mult

How to add a gradient background in CSS How to add a gradient background in CSS Sep 16, 2025 am 05:30 AM

To add a CSS gradient background, use the background or background-image attributes to cooperate with functions such as linear-gradient(), radial-gradient(); first select the gradient type, set the direction and color, and you can finely control it through color docking points, shape, size and other parameters, such as linear-gradient(toright,#ff7e5f,#feb47b) to create a linear gradient from left to right, radial-gradient(circle,#ff9a9e,#fecfef) to create a circular radial gradient, and you can also use repeating-linear-gr

How to create a circular image in CSS? How to create a circular image in CSS? Sep 15, 2025 am 05:33 AM

Use border-radius:50% to turn images of equal width and height into circles, combine object-fit and aspect-ratio to ensure shape and cropping, and add borders, shadows and other styles to enhance visual effects.

How to create a staggered animation effect on a list with CSS How to create a staggered animation effect on a list with CSS Sep 18, 2025 am 12:15 AM

Using CSS to create interleaved animation effects requires setting the same animation for the list items but staggering the start time. First, build an unordered list HTML structure, then define the @keyframes animation that fades into the slide, and then set incremental animation-delay for each list item through the :nth-child selector or CSS custom attribute to achieve the stagger effect. Finally, JavaScript can be optionally used to control triggering when entering the viewport. This method achieves natural and smooth cascading animations by coordinating element timing.

See all articles