0
How to make my text at the bottom on html
I tried <h2 align="footer">my text</h2>
1 Resposta
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>