mirror of
https://github.com/servo/servo.git
synced 2025-06-11 01:50:10 +00:00
24 lines
370 B
HTML
24 lines
370 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
#first {
|
|
position: relative;
|
|
width: 100px;
|
|
height: 100px;
|
|
border: solid 1px;
|
|
}
|
|
#block {
|
|
height: 50px;
|
|
width: 50%;
|
|
max-width: 40px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="first">
|
|
<div id="block">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|