tags:

views:

365

answers:

2
+1  A: 

if you also float:left, set a width and display:inline the other input fields, the should appear on the same line

Cipher
The above CSS I am using for the linear view, which is first half of the form, so, can I ignore the float:left and just use display: inline?
Saif Khan
A: 

Hello,

display: inline - puts the item on the same line display: block - gives the item an entire line of its own

float: left - floats the item to the left...

Cyril Gupta