blob: 4d51f4639970a0dbc210c8f4737038b544e674e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<style>
div {
position: absolute;
background-color: green;
width: 10px;
height: 10px;
}
</style>
<div style="top: 0; left: 0;"></div>
<div style="top: 0; right: 0;"></div>
<div style="bottom: 0; right: 0;"></div>
<div style="bottom: 0; left: 0;"></div>
|