I am trying to have left and right alignment in my HTML. It works fine when the fonts are the same size, but they do not align when the fonts are different sizes.
.right {
float: right;
display: inline
}
.left {
float: left;
font-size: 300%;
display: inline
}
<span class="left">Left Alignment</span>
<span class="right"> Right Alignment</span>
I would like the two spans to be aligned by the bottom of the text. Can somebody please help me with this?
Thanks!