Style borderImageSlice Property
Example
Specify the inward offsets of the image-border:
document.getElementById("myDIV").style.borderImageSlice = "50% 10%";
Try it Yourself »
Definition and Usage
The borderImageSlice property specifies the inward offsets of the image-border.
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
Property | |||||
---|---|---|---|---|---|
borderImageSlice | Yes | 11.0 | Yes | 6.0 | Not supported |
Look at the borderImage property instead!
Syntax
Return the borderImageSlice property:
object.style.borderImageSlice
Set the borderImageSlice property:
object.style.borderImageSlice = "number|%|fill|initial|inherit"
Property Values
Value | Description |
---|---|
number | Numbers represent pixels in the image (if the image is a raster image) or vector coordinates (if the image is a vector image) |
% | Percentages are relative to the size of the image: the width of the image for the horizontal offsets, the height for vertical offsets. Default value is 100% |
fill | Causes the middle part of the border-image to be preserved |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Technical Details
Default Value: | 100% |
---|---|
Return Value: | A String, representing the border-image-slice property of an element |
CSS Version | CSS3 |
Related Pages
CSS reference: border-image-slice property
❮ Style Object