在我的页面布局中,图像应垂直放入第一行:
<div id="main">
<div id="header" class="vcenter">
<img src="https://source.unsplash.com/random/200x200" id="logo">
</div>
<div id="e1"></div>
</div>
CSS:
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #001018;
}
#main {
display: grid;
grid-template-columns: 200px;
grid-template-rows: 100px auto;
grid-template-areas:
"header"
"e1";
gap: 20px;
}
#header { grid-area: header; }
#e1 { grid-area: e1; }
#main > div {
background-color: #334455;
padding: 5px;
}
#logo {
max-width: auto;
max-height: 80%;
border: 1px solid red;
}
.vcenter {
display: grid;
align-items: center;
}
Firefox 在调整大小后成功地将图像居中,但 Chrome 会将图像向下移动,如下所示:
是否有一种简单的方法可以在对 css/html 进行最小更改的情况下使其在两种浏览器中兼容,同时保持当前的网格布局?
谢谢!
答案 0 :(得分:1)
高度不够。将 height: 100%
添加到 #logo
。像这样:
#logo {
...
height: 100%;
}
这将适用于两种浏览器。