English 中文(简体)
CSS 媒体查询相对于背景图像宽度
原标题:CSS media queries vs. background image width

我一生中第一次尝试使用媒体查询。我想实现的是一个移动沥青的在线表格(基本上为Android MDPI/HPDI和iPhone 3至4)。

我所做的是用320px的宽度背景图像, 进行320px屏幕的媒体查询,

@media only screen
and (min-device-width : 120px)
and (max-device-width : 320px)
{

body {
    background-image:url( ../img/bg-320.jpg );
    background-repeat: no-repeat;
    width: 320px;
    height: 436px;
    margin:0; padding:0; border:0;
}

此外,在同一 cs 上,还有一个小屏幕(小于 480px 宽度)的媒体查询(小于 480px 宽度背景图像),这样:

@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px)
{


body {
    background-image:url( bg-480.jpg );
    background-repeat: no-repeat;
    width: 480px;
    height: 800px;
    margin:0; padding:0; border:0;
}

检测效果很好, 但问题是480宽的装置 放大了480px的背景, 因为对于他们的屏幕来说太大了, 这是非感官的!

即使是陌生人, 如果试图将320px- CSS- 区块( 上面第一个) 装入 480 宽的装置上, 效果也不错! 没有放大! 但图像显然有点模糊 。

这发生在我的iPod Touch 和我的HTC渴望。

有人能帮我吗?

顺便说一句,我的头看起来像:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
        "http://www.w3.org/TR/html4/frameset.dtd">
<html>

<head>

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <meta name="apple-mobile-web-app-capable" content="yes" />  

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

</head>

EDIT:

我刚意识到媒体的询问 与我的问题无关

问题基本上在于:为什么在两个 480px-width 设备上,一个320px-width-back-image 被视为全屏,而一个 480px-width-wack-image 被放大? 这只是一种非感知!

最佳回答

答复:

<meta name="viewport" content="width=device-width, target-densitydpi=device-dpi, user-scalable=no" />

本文“a href=”一文对一切作了非常清楚的解释。 http:// developmenter.android.com/guide/webapps/targeting.html” rel=“nofollow”>http://developer.android.com/guide/webapps/targing.html

问题回答

您可以使用元标记控制目标 dpi 位置。 您应该尝试或使用不同的密度值 :





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

Drop down background url in Safari Issue

selectBox.selectCSS { background: url(/Images/replacementSelectBackground.png) top left no-repeat height:auto; } I have an issue in Safari only where the image is not rendering on top ...

CSS specific for Safari

How do you target specifically safari in css with styles?

Aligning textarea in a form

Ive used the following css code to align my form elements: form { position:relative; } form input { position:absolute; left:11em; } However, the textarea element is not aligned correctly with the ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

CSS problem with page footer

I have defined my page footer in the css file as: #footer { position: absolute; height: 50px; text-align: center; background: #66CCCC; bottom: 0px; left: 0px; width: 100%; height: ...

热门标签