CSS background-clip Property

You are Here:

CSS background-clip Property

CSS background-clip property specifies how far the background should extend within an element.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ box-sizing: border-box; height: 280px; width: 280px; background: url("/husky.jpg") no-repeat; border: 10px double #8c8c8c; background-clip: border-box; padding: 10px; } #point{ background-clip: border-box; } #point1{ background-clip: padding-box; } #point2{ background-clip: content-box; } </style> </head> <body> <h1>CSS background-clip Property</h1> <h2>background-clip: border-box</h2> <div id="point"></div> <h2>background-clip: padding-box</h2> <div id="point1"></div> <h2>background-clip: content-box</h2> <div id="point2"></div> </body> </html>

Syntax

Using CSS

element{ background-clip: border-box; }

Using Javascript

object.style.backgroundClip="border-box";

Animatable

No, background-clip property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS background-clip property is border-box.

Property Value

The following table provides a list of values for CSS background-clip property.

ValueExplanation
border-boxSpecifies the background extends behind the border.
padding-boxSpecifies the background extends to the inside edge of the border.
content-boxSpecifies the background extends to the edge of the content box.

Using JavaScript

In the following example, we will demonstrate how to change the CSS background-clip property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point{ box-sizing: border-box; height: 280px; width: 280px; background: url("/husky.jpg") no-repeat; border: 10px double #8c8c8c; background-clip: border-box; padding: 10px; } </style> </head> <body> <h1>CSS background-clip Property</h1> <div id="point"> </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementById("point"); function myFunction(){ x.style.backgroundClip = "padding-box"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author