我正在尝试制作一个 php 画廊,这就是为什么我需要一个好的面具,以后可以在其中显示图片。我希望面具不要大于屏幕尺寸。我的意思是,必须没有滚动,整个 <body>
需要只有浏览器窗口的宽度和高度,以便 <body>
中的每个子对象都限制在框架内-浏览器的大小,如果溢出将缩小。我已经尝试在 --- 上使用 max-width
和 max-height
<body>
,但它不起作用。
这是我的 index.html
文件的内容:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="mother">
<div id="header">
<div id="back-link">
<a href="../">Home</a>
</div>
<div id="prev">
<a href="">next picture</a>
</div>
<div id="next">
<a href="">previous picture</a>
</div>
<div id="headline">
<p class="h2">Our Galery</p>
</div>
</div>
<!-- Content -->
<div id="container-bild">
<img src="./bilder/P1130079.JPG" id="img-bild" />
</div>
</div>
</body>
</html>
这是我的 style.css
文件的内容:
body {
max-width: 100%;
max-height: 100%;
}
/* mother-container */
div#mother {
max-width: 100%;
max-height: 100%;
margin: auto;
}
/* main-container */
#container-bild {
max-width: 100%;
max-height: 100%;
}
/* picture in main-container */
#img-bild {
max-width: 100%;
max-height: 100%;
border: 1px solid #280198;
}
这是它的截图:
原文由 hans2020dieter 发布,翻译遵循 CC BY-SA 4.0 许可协议
要将高度和宽度设置为窗口(视口)大小的 100%,请使用:
.