blob: 39ae50f939b5fb5c73d79ff13bffda9bbb6960f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<style>
fieldset {
padding: 0;
margin: 10px;
height: 100px;
width: 100px;
border: 10px solid;
border-image-source: url(blue-1x1.png);
border-image-outset: 10px;
transform: scale(0.5);
}
</style>
<fieldset></fieldset>
|