Divides the image specified by border-image-source in nine regions: the four corners, the four edges and the middle. It does this by specifying 4 inward offsets.
Overview table100%
border-collapse
is set to collapse
.
borderImageSlice
border-image-slice: <number>
border-image-slice: <percentage>
border-image-slice: fill
border-image-slice: inherit
A simple example showing multiple <div>s, identical in style except that they have different border-image-slice properties applied to them.
<div class="pattern one">one</div>
<div class="pattern two">two</div>
<div class="pattern three">three</div>
<div class="pattern four">four</div>
div {
height: 100px;
width: 100px;
margin: 25px;
text-align: center;
line-height: 100px;
font-family: sans-serif;
}
.pattern {
border-image-source: url(/docs/w/images/d/d8/border-image.png);
border-image-width: 6;
border-image-outset: 3;
border-image-repeat: repeat;
}
.pattern.one{
border-image-slice: 30;
}
.pattern.two{
border-image-slice: 30 20;
}
.pattern.three{
border-image-slice: 20 15 30;
}
.pattern.four{
border-image-slice: 25 20 30 15;
}
Usage
* Up to four different values can be specified, in the following order: top, right, bottom, left.
border-image-slice
Mozilla Developer Network : Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4