Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<style>
.container {
width: fit-content;
border: 1px solid blue;
}
textarea {
display: block;
overflow-y: scroll;
}
</style>
</head>
<body>
<div class=container>
<textarea>hello
world</textarea>
</div>
</body>
</html>