mirror of
https://github.com/servo/servo.git
synced 2025-10-04 18:49:23 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
37 lines
No EOL
1.1 KiB
HTML
37 lines
No EOL
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en"><head>
|
|
<meta charset="UTF-8">
|
|
<title>CSS Reference: Inlinize block-level boxes inside ruby</title>
|
|
<link href="mailto:quanxunzhen@gmail.com" rel="author" title="Xidorn Quan">
|
|
<style>
|
|
.block, table, .flex {
|
|
background-color: yellow;
|
|
width: 100px; height: 30px;
|
|
border: 1px solid blue;
|
|
}
|
|
.block { display: inline-block; }
|
|
table { display: inline-table; border-collapse: collapse; }
|
|
td { border: 3px solid red; }
|
|
.flex { display: inline-flex; }
|
|
.flex-item { flex: auto; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><rb>a<div class="block">b</div>c</rb><rt>x<div class="block">y</div>z</rt></div>
|
|
<div>
|
|
<rb>a<table><tbody><tr><td>b1</td><td>b2</td></tr></tbody></table>c</rb>
|
|
<rt>x<table><tbody><tr><td>y1</td><td>y2</td></tr></tbody></table>z</rt>
|
|
</div>
|
|
<div>
|
|
<rb>a<div class="flex">
|
|
<div class="flex-item">b1</div>
|
|
<div class="flex-item">b2</div>
|
|
</div>c</rb>
|
|
<rt>x<div class="flex">
|
|
<div class="flex-item">y1</div>
|
|
<div class="flex-item">y2</div>
|
|
</div>z</rt>
|
|
</div>
|
|
|
|
|
|
</body></html> |