mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
23 lines
325 B
HTML
23 lines
325 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#first {
|
|
height: 100px;
|
|
width: 100px;
|
|
overflow: hidden;
|
|
}
|
|
#second {
|
|
height: 100px;
|
|
width: 200px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
<div id="second">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|