- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Frame Image: border-image-slice</title>
<meta charset="utf-8">
<link rel="stylesheet" href="setting.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="portrait"></div>
</body>
</html>
CSS
.portrait {
box-sizing: border-box;
margin: 50px auto;
padding: 10px;
width: 270px;
height: 270px;
outline: 10px solid white;
border: 50px solid rgba(0, 0, 0, 0.4);
border-image-source: url("img/border-img.png");
background: url("img/border-img.png") no-repeat #ffffff;
background-clip: padding-box;
background-origin: content-box;
}
You’ve gone to a different page
Goalscompleted
0
- Set the
border-image-slice
property with a value of120
for the.portrait
block, - and then change the value to
80
, - and then finally change it to
50
. Notice how the background is filled to all of the borders of the frame.
Comments