<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
.vertical {
resize: vertical;
}
.horizontal {
resize: horizontal;
}
</style>
</head>
<body>
<h2>Redimensionnez textarea uniquement verticalement</h2>
<form>
<textarea class="vertical" rows="8" cols="50">Envoyez votre commentaires à l'auteur.</textarea>
<h2>Redimensionnez textarea uniquementy horizontalement</h2>
<textarea class="horizontal" rows="8" cols="50">Envoyez votre commentaires à l'auteur.</textarea>
</form>
</body>
</html>