I want a button to rotate by 90 degrees and stick to the bottom left of a web page. But this ruleset won't work:
*{ margin: 0; padding: 0; } button{ box-sizing: border-box; position: absolute; top: 80vh; left: 0; height: 3em; padding: 1em; width: 15em; border: none; transform: rotate(90deg); }
Seems like the button even after being rotated by 90 degrees assumes it original space. Can you please tell me how to fix this? enter image description here