Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/max-content-textarea-with-scrollbar.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<link rel="match" href="max-content-textarea-with-scrollbar-ref.html">
<style>
.container {
width: max-content;
border: 1px solid blue;
}
textarea {
display: block;
}
</style>
</head>
<body>
<div class=container>
<textarea>hello
world</textarea>
</div>
</body>
</html>