Struggling to position my rotated element at the top left corner of the body using absolute positioning. Here's a simple example I've put together:
<div>Hello world</div>
Here is the CSS code:
div {
font-size: 10px;
transform: rotate(90deg);
position: absolute;
top: 0;
left: 0;
}
However, the element disappears from the screen once I apply these styles. Not sure what's causing this issue. Any help would be appreciated!