54 lines
1.1 KiB
HTML
54 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
CSS Test: Testing that tables with "table-layout:fixed" can shrink
|
|
from their default flex base size to fit their multi-line flex container.
|
|
</title>
|
|
<style>
|
|
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: 300px;
|
|
border: 1px solid black;
|
|
font: 12px monospace;
|
|
margin-bottom: 5px;
|
|
}
|
|
.forceMaxContent > * {
|
|
width: max-content;
|
|
}
|
|
.container > * {
|
|
display: flex;
|
|
padding: 5px 10px;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
background: lightgray;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div>
|
|
<table><td>a</td></table>
|
|
</div>
|
|
<div>
|
|
<table><td>b</td></table>
|
|
</div>
|
|
</div>
|
|
<div class="container forceMaxContent">
|
|
<div>
|
|
<table><td>a</td></table>
|
|
</div>
|
|
<div>
|
|
<table><td>b</td></table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|