When you say “called,” I'm going to assume that you mean the identifier.
To make this a crossbrowser, I would not suggest using CSS3 [] , although this is an option. In addition, each of your text fields provides a class of type "tb" and a radio button "rb".
Then:
#divContainer .tb { width: 150px } #divContainer .rb { width: 20px }
This assumes that you are using the same classes elsewhere; if not, this will be enough:
.tb { width: 150px } .rb { width: 20px }
As @David mentioned, to access something inside the section itself:
Where [element] is any HTML element that you need.
Kerry Jones Jul 21 '10 at 23:16 2010-07-21 23:16
source share