mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
544 B
HTML
29 lines
544 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
IMG, Input, Textarea {
|
||
|
width: 50px;
|
||
|
height: 25%;
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
DIV, TABLE {
|
||
|
height: 400px;
|
||
|
width: 400px;
|
||
|
border: 1px solid grey;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>children of the body</h1>
|
||
|
<img> <input> <textarea></textarea>
|
||
|
|
||
|
<h1>children of a div with height=400px</h1>
|
||
|
<div>
|
||
|
<img> <input> <textarea></textarea>
|
||
|
</div>
|
||
|
|
||
|
<h1>children of a table with height=400px</h1>
|
||
|
<table><tr><td>
|
||
|
<img> <input> <textarea></textarea>
|
||
|
</td></tr></table>
|
||
|
</body></html>
|