blob: 39b65e32f474540cef551c62f9250e021d2dfa56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<html>
<head>
<style>
*, LI {
display: inline-grid;
grid-row: line_name_1 / auto;
}
HTML {
scale: -102 63;
}
* {
grid: subgrid [ line_name_5 ] / auto-flow dense fit-content(40%);
}
</style>
<script>
document.addEventListener('DOMContentLoaded', () => {
const style = document.createElement('style')
document.head.appendChild(style)
const sheet = style.sheet
sheet.addRule('script', 'position:absolute!important', (820656062 % sheet.cssRules.length))
})
</script>
</head>
</html>
|