- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Frame Image: border-image-source</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);
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
- For the
.portrait
block, set the image of theimg/border-img.png
frame.
Comments