зеркало из https://github.com/mozilla/pjs.git
34 строки
1.1 KiB
HTML
34 строки
1.1 KiB
HTML
<html>
|
|
<body>
|
|
<form>
|
|
<div style="background-color:blue;color:yellow;width:200px">200px wide</div><br>
|
|
This button should be 200x60<br>
|
|
<input type="button" value="Press Me"style="width:200px;height:60px;">
|
|
<br>
|
|
<br>
|
|
<div style="background-color:blue;color:yellow;width:100px;height:21;">100x21</div><br>
|
|
This button should be 100x21<br>
|
|
<input type="button" value="Press Me with Really long title"style="width:100px;height:21px">
|
|
<br>
|
|
<br>
|
|
This button should be 100x21<br>
|
|
<input type="button" value="Presssssssssssssssssssssssssss"style="width:100px;height:21px">
|
|
<br>
|
|
<br>
|
|
<div style="background-color:blue;color:yellow;width:200px">200px wide</div><br>
|
|
This button should be 200x60<br>
|
|
<button style="width:200px;height:60px;">Press Me</button>
|
|
<br>
|
|
<br>
|
|
<div style="background-color:blue;color:yellow;width:100px;height:21;"> 100x21</div><br>
|
|
This button should be 100x21<br>
|
|
<button style="width:100px;height:21px;">Press Me with Really long title</button>
|
|
<br>
|
|
<br>
|
|
This button should be 100x21<br>
|
|
<button style="width:100px;height:21px;">Presssssssssssssssssssssssssss</button>
|
|
<br>
|
|
</form>
|
|
</body>
|
|
</html>
|