border/keret ksztse kppel 2
The border-image-source property specifies the image to be used as the border around an element:
Hello World!
Here is the original image:
Note: Internet Explorer 10, and earlier versions, do not support the border-image-source property.
<style>
#borderimg {
border: 10px solid transparent;
padding: 15px;
border-image-source: url(//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1458222926_06.png);
border-image-slice: 30;
}
</style>
</head>
<body>
<p>The border-image-source property specifies the image to be used as the border around an element:</p>
<p id="borderimg">Hello World!</p>
<p>Here is the original image:</p><img src="//jegvirag.gportal.hu/portal/jegvirag/image/gallery/1458222926_06.png">
<p><strong>Note:</strong> Internet Explorer 10, and earlier versions, do not support the border-image-source property.</p>
</body>