You would need to override a few styles that are added to the text boxes. 
 For example, add this css to your app:

input[type="text"]
{
    padding:0px;
    margin-bottom:0px;
}​ 

and the table begins to look cleaner without all of the extra spacing.

On Wednesday, June 6, 2012 8:11:32 AM UTC-6, Jason wrote:
>
> should I not be putting text inputs into a column in my table?  None 
> of the other text in the row lines up with the input box....it's like 
> they are top aligned instead of center or bottom.  Also the height of 
> the txt input really screws up the spacing in the rows...lots of space 
> left under the text.... 
>
> http://jsfiddle.net/KBTy7/37/ 
>
> why are inputs so big....this is tabular data for the most part, so I 
> don't think I'm "using a table for layout".....any suggestions on how 
> to make this look cleaner? 
>
> Jason

Reply via email to