RogerTheShrubber
RogerTheShrubber

Reputation: 100

Target android browser only in CSS

Is there a way to target the Android default browser in CSS? Something similar to either the <!--[if IE 6]><![endif]--> tags, or the @-moz-document url-prefix() {}?

Thanks!

Upvotes: 2

Views: 6800

Answers (1)

skull3r7
skull3r7

Reputation: 215

No Way. There are not Conditional comments or special CSS-Prefixes for Android!

You can check the UserAgent with JavaScript or jQuery and embed then a CSS only for Andoid.

Upvotes: 1

Related Questions