mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
This allows default and attribute-based sizing when an axis is auto, without overriding extrinsic sizing.
16 lines
280 B
HTML
16 lines
280 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<style>
|
|
.stretch {
|
|
display: flex;
|
|
height: 200px;
|
|
background: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="stretch"><textarea></textarea></div>
|
|
<textarea rows="10"></textarea>
|
|
<textarea cols="60"></textarea>
|
|
</body>
|