mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
31 lines
473 B
HTML
31 lines
473 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
section {
|
|
width: 400px;
|
|
}
|
|
table {
|
|
width: 400px;
|
|
height: 100px;
|
|
}
|
|
#a {
|
|
min-width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
#b {
|
|
background: lightblue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section><table><tr><td><div id=a></div></td><td id=b>
|
|
Foo foo foo foo foo foo foo foo
|
|
foo foo foo foo foo foo foo foo
|
|
foo foo foo foo foo foo foo foo
|
|
foo foo foo foo foo foo foo foo
|
|
</td></tr></table></section>
|
|
</body>
|
|
</html>
|
|
|