<!DOCTYPE html>
<html>
<head>
<style>
#borderimg {
border: 10px solid transparent;
padding: 15px;
border-image: url(https://img-techis-jp.sgp1.digitaloceanspaces.com/css/border.png) 30 round;
}
</style>
</head>
<body>
<h1>border-imageプロパティ</h1>
<p>ここでは、画像の中央セクションを繰り返して境界線を作成しています。</p>
<p id="borderimg">border-image: url(border.png) 30 round;</p>
<p>元の画像はこちらです</p><img src="https://img-techis-jp.sgp1.digitaloceanspaces.com/css/border.png">
<p><strong>注:</strong>Internet Explorer10以前のバージョンでは、border-imageプロパティがサポートされていません。</p>
</body>
</html>