mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
22 lines
325 B
HTML
22 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>
|