12 lines
261 B
HTML
12 lines
261 B
HTML
<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>
|