<script>
document.body.style.display = "none"; var justify = [ "stretch",
// FIXME: When https://github.com/w3c/csswg-drafts/issues/1002 is implemented.
// "stretch end",
// "stretch center",
// "stretch safe end",
// "stretch unsafe end", "safe start", "safe end", "safe center", "unsafe start", "unsafe end", "unsafe center", "space-between",
// FIXME: https://github.com/w3c/csswg-drafts/issues/1002
// "space-between end",
// "space-between start",
// "space-between safe end",
// "space-between unsafe end", "space-around",
// FIXME: https://github.com/w3c/csswg-drafts/issues/1002
// "space-around center",
// "space-around right",
// "space-around safe right",
// "space-around left", "space-evenly",
// FIXME: https://github.com/w3c/csswg-drafts/issues/1002
// "space-evenly flex-end",
// "space-evenly safe flex-end",
// "space-evenly unsafe flex-start",
// "space-evenly right",
]; var cols = [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" ]; var widths = [ "0", "1", "2", "3", "4", "5", "6" ];
for (var j = 0; j < justify.length; ++j) {
// document.body.appendChild(document.createTextNode(justify[j])); // for debugging var chunk = document.createElement('div');
chunk.setAttribute("style", "border:1px solid; padding:2px 10px; overflow:hidden");
for (var c = 0; c < cols.length; ++c) {
for (var w = 0; w < widths.length; ++w) {
// set this to true if you want to see all tests var run_test = widths[w] < cols[c] || cols[c] == 0 || cols[c] == 1;
if (run_test) { var grid = document.createElement('div');
grid.style.width = widths[w]+"px";
grid.className = "grid";
grid.style.justifyContent = justify[j]; varspan = document.createElement('span'); span.style.gridColumn = "1 / span " + cols[c];
grid.appendChild(span);
for (var x = 0; x < cols[c]; ++x) {
grid.appendChild(document.createElement('x'));
}
chunk.appendChild(grid);
}
}
}
document.body.appendChild(chunk);
}
document.body.style.display = "";
</script>
</body>
</html>
Messung V0.5
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.11Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.