gpt4 book ai didi

html - “底部”在 Edge 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 22:51:30 24 4
gpt4 key购买 nike

我有以下 HTML:

.arrow {
width: 50px;
position: fixed;
}
.arrow.arrow-right {
top: 0;
bottom: 0;
margin: auto;
right: 15px;
}
.arrow.arrow-bottom {
left: 0;
right: 0;
margin: auto;
bottom: 15px;
transform: rotate(90deg);
}
<img src="http://bestanimations.com/Signs&Shapes/Arrows/Left/left-arrow-15.gif" class="arrow arrow-bottom" />
<img src="http://bestanimations.com/Signs&Shapes/Arrows/Left/left-arrow-15.gif" class="arrow arrow-right" />

我希望第一个箭头出现在屏幕右边缘附近,第二个箭头出现在屏幕底部附近。

这正是 Chrome、Firefox 和 Opera 中发生的事情:

enter image description here

在 Edge 中,“底部”规则似乎只是……被忽略了:

enter image description here

为什么会这样?

Fiddle

最佳答案

只需更改为以下内容:

.arrow.arrow-bottom {
left: 0;
right: 0;
margin: 0 auto; /* instead of auto */
bottom: 15px;
transform: rotate(90deg);
}

margin: auto 导致了这个问题。请让我知道它是否解决了问题。

关于html - “底部”在 Edge 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39814750/

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