I am facing an issue with the positioning of three span tags: A is floated left while B and C are floated right.
My desired layout is to have C positioned below B, both floating right on separate lines. I attempted using display:block for B but it did not work as expected. How can I achieve this layout using only span tags instead of div?
This is my current CSS styling:
#A {
float:left;
}
#B {
float:right;
}
#C {
float:right;
}
Any advice or assistance would be greatly appreciated. Thank you!