I have a div element that has an id and this div contains a set of inputs and labels. I ONLY want to style the inputs inside this specific div but .. the following styles everything (global) instead of keeping the scope inside #ParentDiv
#ParentDiv label,input { display: inline; }
Also, is it possible to do this type of thing with valid css in IE6/7?