naive-ui/playground/pg2.html
2020-01-30 16:00:38 +08:00

28 lines
666 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.fixed-el {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: red;
}
.test-el {
position: absolute;
left: 400px;
top: 200px;
height: 100px;
width: 100px;
background-color: yellowgreen;
}
</style>
</head>
<body>
<div class="fixed-el">123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890-12345678901234567890123456789012345678901234567890
<div class="test-el"></div>
</div>
</body>
</html>