hello guys, I've got in small prob, plz help me how to make two DIVs seem in same line? like in this pic
Try this out : <div style="float:right; "> Next >> </div> <div> << Previous </div> HTML: Thanx, Shadab.
it works when directly used it as is but when implemented in css file, it is not working update: ok it worked after i did apply float in both DIVs float:right; and float:left; thanks for that
It should work, even when the style is applied at external / document level. <style> .right { float:right; } </style> <div class="right"> Next >> </div> <div> << Previous </div> HTML: Make sure the div that should appear on the right is placed "before" the div that is to appear on the left. (If you are using the float style attribute only for the div to be positioned on right) Yup... thats another solution to this problem. Thanx, Shadab.