mirror of
https://github.com/servo/servo.git
synced 2025-06-27 02:23:41 +01:00
34 lines
No EOL
799 B
HTML
34 lines
No EOL
799 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>multicolumn | table-cell, vertical-align</title>
|
|
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/css3-multicol/#the-multi-column-model">
|
|
<link rel="match" href="reference/multicol-table-cell-vertical-align-ref.htm">
|
|
<meta name="flags" content="ahem">
|
|
<style type="text/css">
|
|
div {
|
|
font-family: ahem;
|
|
font-size: 1em;
|
|
line-height: 1em;
|
|
vertical-align: middle;
|
|
color: white;
|
|
background: #3366CC;
|
|
width: 6em;
|
|
height: 400px;
|
|
display: table-cell;
|
|
|
|
column-count: 2;
|
|
column-gap: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa aaa
|
|
</div>
|
|
|
|
</body>
|
|
</html> |