зеркало из https://github.com/mozilla/gecko-dev.git
99 строки
3.1 KiB
HTML
99 строки
3.1 KiB
HTML
<!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: Testing grid minmax(min-content,max-content) column/rows</title>
|
|
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151212">
|
|
<style type="text/css">
|
|
body,html { color:black; background:white; font-size:8px; line-height:10px; padding:0; margin:0; }
|
|
|
|
.grid {
|
|
display: block;
|
|
border: 2px solid green;
|
|
overflow: hidden;
|
|
clear: both;
|
|
}
|
|
.float { float:left; clear:both; border: 2px dashed blue;}
|
|
|
|
span {
|
|
background: lime;
|
|
border-style: solid;
|
|
border-width: 1px 3px 5px 7px;
|
|
float: left;
|
|
}
|
|
|
|
x10 { display:inline-block; width:10px; height:10px; background:yellow; }
|
|
x30 { display:inline-block; width:30px; height:30px; background:cyan; }
|
|
.c2,.r2 { width:20px; height:20px; background: silver; }
|
|
.r2 { background: pink; }
|
|
.c1 { margin: 1px 3px 5px 7px; }
|
|
.v {
|
|
writing-mode:vertical-lr;
|
|
-webkit-writing-mode:vertical-lr;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="grid">
|
|
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left"></span>
|
|
</div>
|
|
<div class="grid">
|
|
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left"></span>
|
|
</div>
|
|
<div class="grid float">
|
|
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left"></span>
|
|
</div>
|
|
<div class="grid float">
|
|
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left"></span>
|
|
</div>
|
|
|
|
<div class="grid">
|
|
<span class="c1 v"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left"></span>
|
|
</div>
|
|
<div class="grid">
|
|
<span class="c1 v"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left"></span>
|
|
</div>
|
|
<div class="grid float v">
|
|
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2" style="background:pink"></span>
|
|
<span class="r2" style="clear:left;background:silver"></span>
|
|
</div>
|
|
<div class="grid float v">
|
|
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2" style="background:pink"></span>
|
|
<span class="r2" style="clear:left;background:silver"></span>
|
|
</div>
|
|
|
|
<div class="grid float v" style="padding-bottom:4px">
|
|
<span class="c1"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left;"></span>
|
|
</div>
|
|
|
|
<div class="grid" style="position:relative">
|
|
<span class="c1 v" style="min-width:100px;"><x10>X</x10><x30>y</x30><x10 style="visibility:hidden">z</x10></span>
|
|
<span class="c1" style="min-width:50px;margin-left:-113px; border:none; padding:1px 3px 5px 7px; background:none"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c1" style="min-width:10px;max-width:10px;margin-left:-113px"><x10>X</x10><x30>y</x30><x10>z</x10></span>
|
|
<span class="c2"></span>
|
|
<span class="r2" style="clear:left"></span>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|