1
0
Fork 0

init: stuff

This commit is contained in:
Strix 2024-01-14 17:35:30 +01:00
commit b2b68cf501
No known key found for this signature in database
GPG key ID: 5F35B3B8537287A7
3 changed files with 83 additions and 0 deletions

39
measure-bs/measure.html Normal file
View file

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.h {
display: flex;
}
.mm {
height: 10mm;
width: 1mm;
}
body div *:nth-child(2n) {
background: red;
}
body div * {
background: black;
}
</style>
</head>
<body>
<div class="h" id="mm">
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
<div class="mm"></div>
</div>
<div data-html-copy="#h"></div>
</body>
</html>