<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<meta http-equiv="Content-Type"
content="application/xhtml+xml; charset=UTF-8" />
<title>Test: Textarea</title>
<style type="text/css">
textarea {
text-align : right;
}
input {
text-align : right;
}
</style>
</head>
<body>
<h1>Eine Textarea</h1>
<form action="./" method="post">
<div>
<textarea name="eineTextArea" rows="10" cols="50"></textarea>
</div>
<div>
<input type="text" name="einTextfeld" />
</div>
</form>
</body>
</html>