I have a div that is full height, 100% of its parent, and I would like to have text written from the bottom to the top, instead of left to right. So, I would like to rate the text 90 degrees counter clockwise, and also fill the div it is inside, maybe as a background svg is a solution?, i dont know :(
The width of the div container is unknown as its part of a responsive layout. I have linked to an image of what the goal is:
https://i.imgur.com/j99eYhR.png
html, body{
height:100%;
}
.a{
height:100%;
font-size:40px;
background-color:#cccccc;
display:inline-block;
}
<div class="a">
HELLO WORLD!
</div>