mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
563 B
HTML
34 lines
563 B
HTML
<html>
|
|
<head>
|
|
<title>!</title>
|
|
<style>
|
|
td{ background-color: #CCDDFF;
|
|
border: 1px solid black;
|
|
margin: 1px;
|
|
padding: 1px;}
|
|
img{ background-color: silver;
|
|
width: 120px;
|
|
height: 20px;
|
|
border: 1px solid black;
|
|
margin: 2px;
|
|
padding: 2px;}
|
|
input{background-color: #CCAAFF;
|
|
margin: 1px;
|
|
padding: 1px;}
|
|
</style>
|
|
</head>
|
|
<body bgcolor=white>
|
|
|
|
the purple text input control must be in the same line with the grey image
|
|
|
|
<table>
|
|
<tr>
|
|
<td><input type=text name=keyword><img></td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|