gecko-dev/testing/web-platform/tests/css/css-multicol/multicol-span-all-dynamic-add-004-ref.html
Ting-Yu Lin 18ca6d4420 Bug 1515991 - Shrink columns width in column-span reftests to fit the window on wpt. r=dholbert
The width doesn't matter for the tests. It's to fit the 600x600 window
to prevent scrollbar from appearing.

Differential Revision: https://phabricator.services.mozilla.com/D15219

--HG--
extra : moz-landing-system : lando
2018-12-24 05:56:36 +00:00

37 lines
794 B
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Multi-column Layout Test Reference: Add the spanner to the inner column</title>
<link rel="author" title="Ting-Yu Lin" href="tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<style>
body {
width: 400px;
}
article {
column-count: 2;
column-rule: 6px solid;
outline: 1px solid black;
}
h3 {
column-span: all;
outline: 1px solid blue;
}
</style>
<body>
<article>
<article>
<div>inner block1</div>
<h3>spanner</h3>
<div>inner block2</div>
</article>
<article>
<div>inner block3</div>
<h3>static spanner</h3>
<div>inner block4</div>
</article>
</article>
</body>
</html>