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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Reference: Percent track sizes</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1264607">
<style type="text/css">
body,html { color:black; background:white; font-family:monospace; font:1px/1 monospace; padding:0; margin:0; }
.grid {
display: grid;
float: left;
border: 3px solid;
grid-template-columns: 18px;
width: 30px;
grid-template-rows: 5px 10px;
margin-right: 20px;
grid-auto-rows: 10px;
align-content: start;
justify-content: start;
}
span {
background: grey;
min-width: 0;
min-height: 0;
line-height: 0;
align-self: start;
justify-self: start;
}
t {
display: inline-block;
width: 30px;
height: 5px;
}
x {
background: lime;
min-width: 0;
min-height: 0;
}
.tA {
grid-template-columns: 30px;
width: auto;
}
.tB {
grid-template-columns: 30px;
grid-template-rows: 0 10px;
}
.t1 {
grid-template-columns: 28px;
}
.t3, .t4, .t8 { grid: auto 10px / auto; width: auto; }
.t9 x { width: 18px }
.t3 x, .t4 x, .t8 x, .tA x { width: 0 }
.t5 x { width: 10px }
.tB x { width: 18px }
.sz {
grid-template-rows: 40px;
width: 100px;
height: 100px;
}
.sz.t1 { grid-template-rows: 50px; }
.sz.t3, .sz.t4 { grid-template-rows: 0; }
.sz.t5 { grid-template-rows: 10px; }
.sz.t9 { grid-template-rows: 40px 10px; height:100px; }
.sz.tA { grid: 0 0 / 0; }
.sz.tB {
grid-template-columns: 60px;
grid-template-rows: 40px;
}
.sz x { width: 60px; }
.sz.t1 x { width: 70px; }
.sz.t3 x, .sz.t4 x, .sz.t8 x { width: 0 }
.sz.t5 x { width: 10px }
.sz.tA x { width: 160px }
.tC {
grid-template-columns: 5px;
grid-template-rows: 5px;
}
.tD {
grid-template-columns: 0;
grid-template-rows: 0;
}
</style>
</head>
<body>
<div class="grid t0"><span><t></t></span><x></x></div>
<div class="grid t1"><span><t></t></span><x></x></div>
<div class="grid t2"><span><t></t></span><x></x></div>
<div class="grid t3"><span><t></t></span><x></x></div>
<div class="grid t4"><span><t></t></span><x></x></div>
<div class="grid t5"><span><t></t></span><x></x></div>
<div class="grid t6"><span><t></t></span><x></x></div>
<div class="grid t7"><span><t></t></span><x></x></div>
<div class="grid t8"><span><t></t></span><x></x></div>
<div class="grid t9"><span><t></t></span><x></x></div>
<div class="grid tA"><span><t></t></span><x></x></div>
<div class="grid tB"><span><t></t></span><x></x></div>
<br clear="all">
<div class="grid sz t0"><span><t></t></span><x></x></div>
<div class="grid sz t1"><span><t></t></span><x></x></div>
<div class="grid sz t2"><span><t></t></span><x></x></div>
<div class="grid sz t3"><span><t></t></span><x></x></div>
<div class="grid sz t4"><span><t></t></span><x></x></div>
<div class="grid sz t5"><span><t></t></span><x></x></div>
<div class="grid sz t6"><span><t></t></span><x></x></div>
<div class="grid sz t7"><span><t></t></span><x></x></div>
<div class="grid sz t8"><span><t></t></span><x></x></div>
<div class="grid sz t9"><span><t></t></span><x></x></div>
<div class="grid sz tA"><span><t></t></span><x></x></div>
<div class="grid sz tB"><span><t></t></span><x></x></div>
<div class="grid sz tC"><span><t></t></span><x style="height:10px; width:5px"></x></div>
<div class="grid sz tD"><span><t></t></span><x style="width:0"></x></div>
<div class="grid sz tD"><span><t></t></span><x style="width:0"></x></div>
</body>
</html>
|