Align Text To The Bottom Of The Screen
Question: How to align the content (text) to the bottom of the screen?
Answer: You can try this
Fixed content editor
<div >
<h1 id="on-earth">Sample</h1>
</div>
Custom CSS
.ssq-bottom-center{
position: absolute;
left: 50%;
bottom: 5%;
transform: translate(-50%, -50%);
text-shadow: 0 0 8px white;
text-align: center;
}
Result: