Css input size

hello, I have too many fields in a form.I need some fields with diferent size in edit mode ().

I was try whith css class:

INPUT.big {

width: 10cm;

height: 10cm;

}

TEXTAREA.big {

width: 10cm;

height:10cm;

}

and then… in fields where I need, I set in HTML tab, class: big

But it does not work.

Css work ok with another classes like TD.class1 or TABLE.class1 or A…

What is worng???

Sorry for my english!!!

Subject: css input size

Use the HTML Attributes object instead of the properties box:

“class="big"”

Subject: RE: css input size

ok, thank you. I will try