无法缩放背景div图像

时间:2013-04-30 05:58:14

标签: html css image background scaling

无论出于什么原因,我无法手动缩放div的背景图像。 background-size和max-height,width没有任何效果。图像忽略了我的样式标签。有人可以解释为什么我不能格式化div的背景图像?我想将img / Stage-Background.png从1600x1076缩小到750x650

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="SDL.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Home</title>
</head>

<body>

<img src="img/SDL 4 Final Recompress.jpg" style="margin-left:auto; margin-right:auto; " />

<div style="background-image:url(img/Stage-Background.png); background-size:80px 60px;
background-repeat:no-repeat;">
<center>
<embed
src="http://blip.tv/play/AwGUv2w"
type="application/x-shockwave-flash" width="669"
height="500" allowscriptaccess="always"
allowfullscreen="true" style="margin-top:100px; margin-bottom:200px;">
</embed>
</center>
</div>

</body>
</html>

2 个答案:

答案 0 :(得分:1)

据我所知,我们无法缩放背景图片

如果您的图片尺寸大于div的尺寸,则

<div style="width:400px; height:400px;background:url(xyz.png);"></div>

xyz.png尺寸大于div的宽度和高度。

您可以使用:

background-position:center;

否则尝试使用普通的img标签,然后使用绝对定位将元素放在图像的顶部。

<div class="your_box_element" style="width:400px;height:400px;position:relative;">
    <img width="400px" height="400px" />
    <div class="your_text_on_top_of image" style="position:absolute;top:0px; left:0px;">
           Your text and other elements go here
    </div>
</div>

加载更大尺寸的图像然后缩放的方法不会给你带来良好的性能,因此最好将图像适当地缩放到div元素,以便将其用作背景。如果您将背景图像更改为所需的大小,则可以更好地查看示例。

有关背景位置background-position的更多详细信息,请参阅此内容以设置正确的适合度

如果您想了解有关背景图片位置的更多信息以及它们在网络上的常用方法,请尝试阅读Image Sprites

答案 1 :(得分:0)

我猜您正在处理此图片:img / Stage-Background.png

使用高度和高度而不是背景大小。 px中的宽度参数。

此外,如果您可以告诉我们图片的原始尺寸是多少,以及您希望为DIV保留的尺寸。