mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
1.1 KiB
HTML
34 lines
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>
|