gpt4 book ai didi

html - CSS:正确限制表格中两个图像的大小

转载 作者:行者123 更新时间:2023-11-28 15:35:46 25 4
gpt4 key购买 nike

我有一个简单的 HTML/CSS 任务。我有一个页面,其中连续显示了两个相同大小的图像。参见 this page .我需要调整图像的显示大小以满足所有这些标准:

  1. 图像必须在浏览器窗口中完全可见,即包含的 div/table 的大小限制为客户区的大小
  2. 图片没有放大,宽高比保持不变
  3. 图片水平居中,中间有固定间距
  4. 至少在 IE9、Chrome 和 Safari 中工作

我在 CSS 方面不是很有经验,所以我最多可以超过 4 个标准中的 2 个。

我目前使用的示例页面满足 3、4 和部分 1(仅限制宽度)。我让样本尽可能靠近我的问题,留下所有相关的主 CSS 文件和自动生成的 ASP.NET 容器。

图像应该保留在 input 标签中,而不是在 img 中,这是可取的,但不是关键。您能否建议满足所有条件的样式属性的适当组合?

更新:

具有宽松标准 1 的解决方案,允许图像的高度超过客户区域的高度,也将不胜感激。

最佳答案

知道了,但我使用图像作为背景而不是 <img> .希望这不是问题。

background-size:contain;缩放背景图像,同时保留图像的原始比例/纵横比。它受 FF4+、IE9+、Chrome1+(带有供应商前缀)、Opera10+ 和 Safari 3+ ( source) 支持。


您的第一个要求的主要问题是:“containig div/table 的大小仅限于客户区的大小”,您无法设置 height:100%;除非父容器也设置了高度。

在您的页面中,我看到您有一个页眉和一个具有动态高度的页脚,因此您需要一些 jQuery 来调整容器的高度。但让我们先看看如何仅使用 CSS 来实现,然后再添加页眉和页脚。


Demo (尝试调整窗口大小)

HTML:

<html>
<body>
<div id="body">
<div>
<div class="left"></div>
</div>
<div>
<div class="right"></div>
</div>
</div>
</body>
</html>​

CSS:

html, body, #body {
width:100%;
height:100%;
}
#body, #body > div {
overflow:hidden;
}
#body > div {
box-sizing:border-box;
width:50%;
height:100%;
float:left;
padding:10px; /* or whatever you need */
}
#body > div > div {
margin:0 auto;
height:100%;
width:100%;
background-repeat:no-repeat;
background-position:top center;
-webkit-background-size:contain; /* Chrome1+, Safari 3+ */
background-size:contain; /* FF4+, IE9+, Chrome3+, Opera10+, Safari 3+ */
}
#body > div > div.left {
background-image:url(/* your left image url */);
max-width:417px; /* the real image width */
max-height:512px;; /* the real image height */
}
#body > div > div.right {
background-image:url(/* your right image url */);
max-width:417px; /* the real image width */
max-height:512px;; /* the real image height */
}​

让我们添加页眉和页脚。我们必须删除 height:100%;来自 #body,并根据以下结果计算其高度:窗口高度 - 页眉高度 - 页脚高度。

Demo (调整窗口大小)

HTML:

<html>
<body>
<header>I'm a header</header>
<div id="body">
<div>
<div class="left"></div>
</div>
<div>
<div class="right"></div>
</div>
</div>
<footer>I'm a footer</footer>
</body>
</html>​

CSS:

html, body {
width:100%;
height:100%;
}
header, footer {
background:grey;
}
#body {
height:400px; /* fallback no javascript */
}
#body, #body > div {
overflow:hidden;
}
#body > div {
box-sizing:border-box;
width:50%;
height:100%;
float:left;
padding:10px; /* or whatever you need */
}
#body > div > div {
margin:0 auto;
height:100%;
width:100%;
background-repeat:no-repeat;
background-position:top center;
-webkit-background-size:contain; /* Chrome1+, Safari 3+ */
background-size:contain; /* FF4+, IE9+, Chrome3+, Opera10+, Safari 3+ */
}
#body > div > div.left {
background-image:url(/* your left image url */);
max-width:417px; /* the real image width */
max-height:512px;; /* the real image height */
}
#body > div > div.right {
background-image:url(/* your right image url */);
max-width:417px; /* the real image width */
max-height:512px;; /* the real image height */
}​

jQuery:

function calcHeight(){
var docHeight = $(document).height();
var headHeight = $('header').outerHeight();
var footHeight = $('footer').outerHeight();
var bodyHeight = docHeight - ( headHeight + footHeight);
$('#body').height(bodyHeight);
}
calcHeight(); /* called first time on page load */
$(window).on('resize',calcHeight());​/* do the math again when window's resized */

我认为这很简单。我这样写是为了让它更容易理解,当然你可以压缩得更多。

我用过 outerHeight页脚和页眉包括可能的边距。

如果您不想包含 jQuery 库,肯定有一种纯 JavaScript 方法来获得它。

关于html - CSS:正确限制表格中两个图像的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12619912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com