blob: 3fc2933e9131f46da93ebfd24595f85ac8214c81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<style>
tr {
font: medium / 1000 cursive;
}
:only-of-type {
border-image: repeating-linear-gradient(45deg, blue, red) space 1% / 1pt auto;
}
</style>
<script>
o1 = document.createElement('tr');
o2 = document.createElement('th');
o3 = document.createElement('rt');
document.documentElement.appendChild(o1);
o1.appendChild(o2);
o2.appendChild(o3);
</script>
</head>
</html>
|