How to style textboxes only within a table?

Hello,

I am using a table with id of : #tblform in the style sheet.

I am also using this code: input[type=“text”],select,textarea { width: 400px; } in the style sheet. But it is resizing fields everywhere.

I want to use this code for fields that are in table #tblform only.

How to achieve that ?

Thanks.


#tblform input[type="text"],
#tblform select,
#tblform textarea {
	width: 400px;
}