Hi This is drive me crazy, can someone please help me how to float 2 items stay in the same line. $5 to your paypal for cup of coffee I have something like this <p style="float: right;"> float a<br> float b <br clear ="all"/> main content </p> Thanks
I have no idea what are you trying to do. Maybe it's much useful for you to use "display:table;" <div style="display:table; width:100%;"> <div style="display:table-cell;width:50%;"> First cell </div> <div style="display:table-cell;width:50%;"> Second cell </div> </div> In some cases this way would be much useful than float.