0

无论出于何种原因,无论做什么,我都无法手动缩放 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>
4

2 回答 2

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以设置正确拟合的更多详细信息,请参见this

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

于 2013-04-30T06:28:31.900 回答
0

我猜你正在处理这张图片:img/Stage-Background.png

代替背景大小,使用 px 中的高度和宽度参数。

另外,如果您能告诉我们图像的原始尺寸是多少,以及您希望为 DIV 保留什么尺寸。

于 2013-04-30T06:03:14.180 回答