So I have this webpage for smartphones. In the header I have the usual meta viewport:

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

and a normal css include:

<link rel="stylesheet" href="default.css" type="text/css" />

with standard css like:

.ui-icon-menu{
    background-image: url(images/icon-menu-normal.png)!important;
}

All works nicely. For high density displays like iPhone 4 it scales nicely but I thought I can make it look even better so I included a css for hi-density:

<link rel='stylesheet' href='highdensity.css'
  media='only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2)' />

In this css I can override the css like this:

.ui-icon-menu{
    background-image: url(images/icon-menu-normal@2x.png)!important;
    background-size: 100%;
}

Work very well. But notice the background-size: 100%;. Without it the background image would get scaled to 200%.

My problem is with repeatable images? What can I do them? I can't use background-size: 100%; because it would stretch the pattern instead of using it.

link|improve this question

feedback

migrated from webmasters.stackexchange.com Jan 31 at 12:36

This question came from our site for pro webmasters.

1 Answer

div{background-size: 5px 5px;} use px instead of %.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.