| <!DOCTYPE html> | |
| <html> | |
| <style> | |
| .box { | |
| width: 10px; | |
| height: 10px; | |
| background-color: green; | |
| border: 1px solid black; | |
| position: absolute; | |
| top: 0px; | |
| left: 0px; | |
| } | |
| .shifted { | |
| left: 33.5px; | |
| } | |
| </style> | |
| <body> | |
| <div class="box"></div> | |
| <div class="box shifted"></div> | |
| </div> | |
| </body> |