Revision 21be95d42621e2f7f4e2a211ce9d4a50d925aa73 authored by Luke Bjerring on 30 March 2018, 22:10:25 UTC, committed by Philip Jägenstedt on 30 March 2018, 22:17:29 UTC
1 parent 771a209
Raw File
multicol-basic-002.html
<!DOCTYPE html>
<html>
<!-- Submitted from TestTWF Paris -->
<head>
	<meta charset="utf-8">
	<title>CSS Test: Multi-column element via column-count: [integer]</title>
	<link rel="author" title="Anselm Hannemann" href="mailto:info@anselm-hannemann.com"/>
	<link rel="author" title="Håkon Wium Lie" href="mailto:howcome@opera.com"/>
	<link rel="help" href="http://www.w3.org/TR/css3-multicol/#columns"/>
	<link rel="match" href="reference/multicol-basic-ref.html"/>
	<meta name="flags" content="ahem"/>
	<link rel="reviewer" title="Elika J Etemad" href="http://fantasai.inkedblade.net/contact">

	<style type="text/css">
		.multicol-wrapper>*{
			font-family: Ahem;
		}

		div.multicol-wrapper{
			border: thin solid black;
			display: inline-block;
			margin: 1em auto;
			width: 360px;
		}

		.multicol-basic-ref{
			background: yellow;
			width: 360px;
			column-count: 3;
			column-gap: 0;
			column-rule: none;
		}

		.multicol-basic-ref-item{
			background: #000;
		}

		.item-1{
			background: purple;
			color: purple;
		}

		.item-2{
			background: orange;
			color: orange;
		}

		.item-3{
			background: blue;
			color: blue;
		}
	</style>
</head>
<body>
<p>Test passes if there are three vertical stripes in the yellow box below: 1st purple, 2nd orange, 3rd blue.</p>
<div class="multicol-wrapper">
	<div class="multicol-basic-ref">
		<span class="multicol-basic-ref-item item-1">XXXX XXXX XXXX XXXX XXXX XXXX XXXX</span>
		<span class="multicol-basic-ref-item item-2">XXXX XXXX XXXX XXXX XXXX XXXX XXXX</span>
		<span class="multicol-basic-ref-item item-3">XXXX XXXX XXXX XXXX XXXX XXXX XXXX</span>
	</div>
</div>
</body>
</html>
back to top