This commit is contained in:
rods%netscape.com 1999-10-26 14:16:15 +00:00
Родитель 3aa55edff4
Коммит db2be0fd32
3 изменённых файлов: 1 добавлений и 109 удалений

Просмотреть файл

@ -24,6 +24,7 @@
<ul>
<li><a href="textarea_tests.html">Tests: Cols, Rows and Style (height, width, padding, border)</a></li>
<li><a href="textarea_sizes.html">Tests: Font sizes and family</a></li>
<li><a href="textarea_wrap_tests.html">Tests: wrap property</a></li>
</ul>
<li>
<b>Input Text</b></li>

Просмотреть файл

@ -1,48 +0,0 @@
<html>
<body bgcolor="#C0D0F0">
<form>
Default Input text<br>
<input type=text value="">
<br>
<br>
Default Input text with a value<br>
<input type=text value="123456789 123456789 123456789 123456789 ">
<br>
<br>
Size=50<br>
<input type=text size=50 value="123456789 123456789 123456789 123456789 123456789 ">
<br>
<br>
style="height:50px;" <br>
<input type=text style="height:50px;" value="123456789 123456789 123456789 123456789 ">
<br>
<br>
style="width:200px;" <br>
<input type=text style="width:200px;" value="123456789 123456789 123456789 123456789 ">
<br>
<div style="color: yellow;background-color:blue;width:200px;">This is 200px width</div>
Size=50 style="height:50px;"<br>
<input type=text size=50 style="height:50px;" value="123456789 123456789 123456789 123456789 123456789 ">
<br>
<br>
style="width:200px;height:50px;" <br>
<input type=text style="width:200px;height:50px;" value="123456789 123456789 123456789 123456789 ">
<hr>
<h3>Padding and Border Tests</h3>
<br>
5px solid blue<br>
<input type=text style="border:5px solid blue;" value="Hello"><br><br>
padding: 5px;<br>
<input type=text style="padding: 5px;" value="Hello"><br><br>
5px solid blue;padding: 5px;<br>
<input type=text style="border:5px solid blue;padding: 5px;" value="Hello"><br><br>
<br>
5px solid blue;height:50px;<br>
<input type=text style="border:5px solid blue;height:50px;" value="Hello"><br><br>
padding: 5px;height:50px;<br>
<input type=text style="padding: 5px;height:50px;" value="Hello"><br><br>
5px solid blue;padding: 5px;height:50px;<br>
<input type=text style="border:5px solid blue;padding: 5px;height:50px;" value="Hello"><br><br>
</form>
</body>
</html>

Просмотреть файл

@ -1,61 +0,0 @@
<html>
<body bgcolor="#C0D0F0">
<form>
Default Textarea<br>
<textarea></textarea>
<br>
<br>
Default Textarea<br>
<textarea>123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
1 Rows Default Cols<br>
<textarea rows=1>123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
2 Rows Default Cols<br>
<textarea rows=2>123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
3 Rows Default Cols<br>
<textarea rows=3>123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
50 Cols Default Rows<br>
<textarea cols=50>123456789 123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
3 Rows 50 Cols<br>
<textarea rows=3 cols=50>123456789 123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
style="height:50px;" (Default Rows & Cols)<br>
<textarea style="height:50px;">123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
style="width:200px;" (Default Rows & Cols)<br>
<textarea style="width:200px;">123456789 123456789 123456789 123456789 </textarea>
<br>
<div style="color: yellow;background-color:blue;width:200px;">This is 200px width</div>
3 Rows style="width:200px;"<br>
<textarea style="width:200px;">123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
50 cols style="height:50px;"<br>
<textarea cols=50 style="height:50px;">123456789 123456789 123456789 123456789 123456789 </textarea>
<br>
<br>
style="width:200px;height:200px;" (Default Rows & Cols)<br>
<textarea style="width:200px;height:200px;">123456789 123456789 123456789 123456789 </textarea>
<hr>
<h3>Padding and Border Tests</h3>
<br>
5px solid blue<br>
<textarea style="border:5px solid blue;"></textarea><br><br>
padding: 5px;<br>
<textarea style="padding: 5px;"></textarea><br><br>
5px solid blue;padding: 5px;<br>
<textarea style="border:5px solid blue;padding: 5px;"></textarea><br><br>
</form>
</body>
</html>