Srdjan Dejanovic
Srdjan Dejanovic

Reputation: 1409

Media query for the Blackberry 9900 bold?

I need media query which will only be applied on Blackberry 9900 bold.

I have tried with @media only screen and (max-height: 480px) and (max-width: 640px) but it wasn't successful.

Can anyone help me?

Upvotes: 1

Views: 1084

Answers (1)

dsgriffin
dsgriffin

Reputation: 68566

The code that helped fix the problem is:

<meta name="viewport" content="target-densitydpi=device-dpi"> 
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale = 1.0" />

Upvotes: 2

Related Questions