How would I go about aligning a span tag to the bottom right of a div without absolutes? For instance...
Code that actually works though...HTML Code:<html> <head> <style> .container { height: 150px; margin-left: 5em; margin-right: 5em; } .mySpan { vertical-align: bottom; float: right; } </style> </head> <body> <div class="container"> <span class="mySpan">Text | Text | Text</span> </div> </html>



Reply With Quote



Bookmarks