Hi,

I need to implement a padding-left:65px in IE7. I have following -

#foo .bar {
  padding-left:60px;
}

I have tried adding following 3 options one at a time immediately after the
one above and in all the cases IE7 picks padding-left:60px;

*+html #foo .bar {
  padding-left:65px;
}

*:first-child+html #foo .bar {
  padding-left:65px;
}

*+html #foo .bar {
  padding-left:65px !important;
}

Any suggestions how do I fix this issue? Help appreciated.

Regards,
Prashant


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*******************************************************************

Reply via email to