x
<html>
<head>
<style>
textarea{
user-select:contain;
}
</style>
</head>
<body>
<p>This is a paragraph before textarea</p>
<textarea>
The text present within editable textarea can be selected but this selection is not extended outside the boundaries of this element.
</textarea>
<p>This is a paragraph after textarea</p>
</body>
</html>