blob: ffa0632fcd2afc710d1c6ff96e7f282939ef0faa [file] [log] [blame]
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="resources/flexbox.css">
<style>
.flexbox {
background-color: grey;
}
</style>
<body>
<p>Form controls that are stretched in a column flexbox should not overflow the flexbox.</p>
<div class="flexbox column">
<input>
</div>
<div class="flexbox column align-content-flex-start">
<textarea class="align-self-stretch"></textarea>
</div>
<div class="flexbox column wrap">
<input type="button">
</div>
<div class="flexbox column">
<select></select>
</div>
<div class="flexbox column">
<legend style="border: 2px solid black">legend</legend>
</div>
<div class="flexbox column wrap">
<div type="border: 4px solid black; padding: 10px;">
</div>
</body>
</html>