[css-d] Floating in with the tide

2006-02-07 Thread MarcLuzietti
When I try and float right something in the same element as something not floated, the line always breaks, i.e., caption Loan Amount Restricted by Tier LTV Maximum ? spanYes == Lower The Loan Amount/span /caption with the following CSS: caption { text-align:left;

Re: [css-d] Floating in with the tide

2006-02-07 Thread Pringle, Ron
When I try and float right something in the same element as something not floated, the line always breaks, i.e., caption Loan Amount Restricted by Tier LTV Maximum ? spanYes == Lower The Loan Amount/span /caption with the following CSS: caption {

Re: [css-d] Floating in with the tide

2006-02-07 Thread MarcLuzietti
I figured it out. In case you're wondering, I simply switched the spanned section and the floats. caption spanLoan Amount Restricted by Tier LTV Maximum ?/span Yes == Lower The Loan Amount /caption caption { float:right; text-align:right; } caption span {