CSS:I'm trying to align the property 'sitetitle' at the bottom right of the 'nav1' box. The code I am using for outputting this code is below. What code should I use to align the property?HTML Code:#nav1 { position: absolute; background-color: #999999; left: 0px; top: 0px; width: 100%; height: 80px; z-index: 1; } #sitetitle { font-size: 36px; }
HTML Code:<div class="nav1"> <span class="sitetitle">Hello!</span> </div>