The border-image property in CSS is used to set the border of an element.
Syntax:
border-image: source slice width outset repeat|initial|inherit;
The border-image property is the combination of many properties which are listed below:
- border-image-source
- border-image-slice
- border-image-width
- border-image-outset
- border-image-repeat
Property Values:
- border-image-source: This property is used to set the source location of the border image.
Syntax:
border-image-source: url(image source location);
- border-image-slice: The border-image-slice property is used to divide or slice an image specified by border-image-source property. The border-slice property divides a given image into:
- 9 regions
- 4 corners
- 4 edges
- A middle region
- border-image-width: The border-image-width property is used to set the width of the border.
Syntax:
border-image-width: value;
- border-image-outset: The border-image-outset property sets the distance by which an element border image is set out from its border box.
Syntax:
border-image-outset: value;
- border-image-repeat: The border-image-repeat property defines how the edge regions of the source image are adjusted to fit the dimensions of an element border image.
Syntax:
border-image-repeat: value;
- initial: It is used to set border-image property to its default value.
- inherit: It is used to set border-image property from its parent.
Example 1:
html
<!DOCTYPE html>
< html >
< head >
< title >
CSS border-image Property
</ title >
< style >
#borderimg1 {
border: 10px solid transparent;
padding: 15px;
-webkit-border-image: url(
border-image: url(
text-align: center;
}
#borderimg2 {
border: 10px solid transparent;
padding: 15px;
-webkit-border-image: url(
border-image: url(
text-align: center;
}
</ style >
</ head >
< body >
< h2 >border-image property</ h2 >
< p id = "borderimg1" >
Element Content
</ p >
< p id = "borderimg2" >
Element Content
</ p >
</ body >
</ html >
|
Output: 
Example 2:
html
<!DOCTYPE html>
< html >
< head >
< title >
CSS border-image Property
</ title >
< style >
#borderimg1 {
border: 15px solid transparent;
padding: 15px;
border-image: url(
}
#borderimg2 {
border: 15px solid transparent;
padding: 15px;
border-image: url(
}
#borderimg3 {
border: 15px solid transparent;
padding: 15px;
border-image: url(
}
</ style >
</ head >
< body >
< h2 >border-image property</ h2 >
< p id = "borderimg1" >BORDER 1</ p >
< p id = "borderimg2" >BORDER 2</ p >
< p id = "borderimg3" >BORDER 3</ p >
</ body >
</ html >
|
Output:
Supported Browsers: The browser supported by the border-image property are listed below:
- Google Chrome 16.0, 4.0 -webkit-
- Internet Explorer 11.0
- Firefox 15.0, 3.5 -moz-
- Opera 15.0, 11.0 -o-
- Safari 6.0, 3.1 -webkit-
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
13 Jun, 2023
Like Article
Save Article