Example:
In this code, use of these three properties is shown and button shift to the bottom left corner of the div element.
<!DOCTYPE html> <html> <head> <title>align content to div</title> <style> .main { border: 1px solid #d5a44f; float: left; min-height: 180px; margin: 2px; padding: 10px; min-width: 117px; position:relative; } .gfg { font-size:40px; color: #e53922; font-weight:bold; tect-align:center } .geeks { text-align:center; } #bottom { position:absolute; bottom:0; left:0; } </style> </head> <body> <div class="main"> <div class = "gfg">Bajarangi Soft</div> <div class = "geeks">A web designing portal </div> <div id="bottom">Bottom Content Div</div> </div> </body> </html>
br><!DOCTYPE html> <html> <head> <title>align content to div</title> <style> .main { border: 1px solid #ff302a; float: left; min-height: 180px; margin: 2px; padding: 10px; min-width: 117px; position:relative; } .gfg { font-size:40px; color: #dcb00d; font-weight:bold; tect-align:center } .geeks { text-align:center; } #bottom { position:absolute; bottom:0; right:0; } </style> </head> <body> <div class="main"> <div class = "gfg">Bajarangi Soft</div> <div class = "geeks">A computer science portal </div> <div id="bottom">Bottom Content Div</div> </div> </body> </html>
Basic property of CSS: