我想在我的css文件中执行下一个技巧,以便(height = width)不设置像素。我想这样做,所以无论浏览器的分辨率如何,在这两个维度上都有相同的值。
#test{
height: 100%;
width: (same as height);
}
我更喜欢用css而不是javascript。
提前谢谢。
答案 0 :(得分:3)
此刻唯一的CSS方式(AFAIK)使用视口关联值(vh / vw)
目前支持不是很好:http://caniuse.com/viewport-units但这是一个快速演示
<强> JSFiddle 强>
<强> CSS 强>
.box {
background-color: #00f;
width: 50vw;
height:50vw;
}
该框响应但始终保持正方形。
纯%值不起作用,因为height:100%
不等于width:100%
,因为它们指的是父母的相关维度。
答案 1 :(得分:0)
另一种选择是使用 img 元素行为
设置长宽比在这里,我使用 svg 图片,并在其中嵌入数据网址,以使其更简单
要描述所需的宽高比,您可以使用 viewBox svg属性viewBox='0 0 width-ratio height-ratio'
示例:
html,
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif;
margin: 0;
padding: 0;
}
body {
margin: 1rem;
}
.row {
padding: 8px 0px;
}
.block {
display: inline-block;
vertical-align: top;
position: relative;
margin-left: 8px;
margin-right: 8px;
}
.block-content {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
}
.ratio--width-to-height {
height: 100%;
width: auto;
}
.ratio--height-to-width {
height: auto;
width: 100%;
}
<h1>
Block aspect ratio with svg image
</h1>
<h2>
width to height
</h2>
<div class="row">
<div class="block" style="background: lime; height: 120px;">
<img class="ratio--width-to-height"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'></svg>">
<div class="block-content">1 : 1</div>
</div>
<div class="block" style="background: cyan; height: 120px;">
<img class="ratio--width-to-height"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1'></svg>">
<div class="block-content">2 : 1</div>
</div>
<div class="block" style="background: orange; height: 120px;">
<img class="ratio--width-to-height"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1.25'></svg>">
<div class="block-content">1 : 1.25</div>
</div>
</div>
<h2>
height to width
</h2>
<div class="row">
<div class="block" style="background: lime; width: 120px;">
<img class="ratio--height-to-width"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'></svg>">
<div class="block-content">1 : 1</div>
</div>
<div class="block" style="background: cyan; width: 120px;">
<img class="ratio--height-to-width"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 1'></svg>">
<div class="block-content">2 : 1</div>
</div>
<div class="block" style="background: orange; width: 120px;">
<img class="ratio--height-to-width"
src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1.25'></svg>">
<div class="block-content">1 : 1.25</div>
</div>
</div>
上的相同示例
答案 2 :(得分:-1)
最大宽度/最大高度对我有用:
在div(.box)中设置了一定大小的图像。
.parent {
position: absolute;
}
.box {
width: 100%;
height: 100%;
}
.box img {
max-width: 100%;
max-height: 100%;
}