mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
30 lines
390 B
HTML
30 lines
390 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
.test {
|
|
margin: 20px;
|
|
height: 200px;
|
|
width: 200px;
|
|
overflow: scroll;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<textarea class="test" dir="ltr"> </textarea>
|
|
|
|
<textarea class="test" dir="ltr"> </textarea>
|
|
|
|
<br>
|
|
|
|
<textarea class="test" dir="rtl"> </textarea>
|
|
|
|
<textarea class="test" dir="rtl"> </textarea>
|
|
|
|
</body>
|
|
</html>
|