mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
26 lines
472 B
HTML
26 lines
472 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
main {
|
|
position: relative;
|
|
padding: 0 16px;
|
|
display: inline;
|
|
}
|
|
section {
|
|
position: absolute;
|
|
top: 25%;
|
|
bottom: 25%;
|
|
left: 0;
|
|
right: 0;
|
|
background: red;
|
|
}
|
|
#coveritup {
|
|
position: relative;
|
|
background: white;
|
|
top: -20px;
|
|
display: inline;
|
|
color: white;
|
|
}
|
|
</style>
|
|
<div>There should be no red.<main><section></section></main></div>
|
|
<div>There should be no red.<div id=coveritup>XXXXX</div></div>
|
|
|