How to make my text at the bottom on html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make my text at the bottom on html

I tried <h2 align="footer">my text</h2>

28th May 2020, 2:36 PM
Elliot
1 Answer
0
Hello. Please try this:) <div class="container"> <div class="top"> </div> <div class="bottom"> <h2> my_text </h2> </div> </div> <style> .container{ display: flex; flex-direction:column; } .top{ min-height:90%; } <style>
28th May 2020, 3:16 PM
bondcoder
bondcoder - avatar