ydaniv
ydaniv

Reputation: 1289

Styling form elements in an Adobe Air app

Built an Adobe Air app that has HTML forms in it. Apparently, Air has its own way of rendering form elements and disregards my CSS. Is there any elegant solution for this?

Upvotes: 1

Views: 327

Answers (1)

phy5ics
phy5ics

Reputation: 26

Yes, all you need to do is create a stylesheet that has the following property applied to the form elements that you want to override the (hideous) default AIR styles for:

-webkit-appearance: none;

Upvotes: 1

Related Questions