为什么我的位置:绝对div在Edge中的位置不同?

时间:2019-04-26 15:18:12

标签: css css-position microsoft-edge

我们正在尝试在图片的一角设置徽章。为此,我们使用父级<div>作为包装器,并在内部使用<span>。到目前为止,它对于Chrome,Firefox和IE11都可以正常工作,但是在MS Edge中,它无法按预期工作。似乎Edge计算的right:属性与其他属性完全不同。

预期结果:
enter image description here

意外结果:
enter image description here

这是我的代码:

.parent {
  width: 200px;
  height: 200px;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
}

.child {
  background-color: #e2001a;
  position: absolute;
  right: -65px;
  width: 220px;
  height: 50px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  padding-left: 100px;
  display: table;
  z-index: 10;
  color: white;
  text-align: center;
  line-height: 1.2;
}
<div class="parent">
  <span class="child">Some cool text</span>
</div>

我做错什么了吗?或者Edge行为与其他浏览器有很大不同吗?

1 个答案:

答案 0 :(得分:3)

您可以像下面那样以不同的方式进行操作,在Edge *上似乎还可以。

.parent {
  width: 200px;
  height: 200px;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
}

.child {
  background-color: #e2001a;
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  height: 50px;
  text-align: center;
  transform: translateX(30%) rotate(45deg) translateY(70%);
  z-index: 10;
  color: white;
  text-align: center;
  line-height: 1.2;
}
<div class="parent">
  <span class="child">Some cool text</span>
</div>

*我不知道为什么...

更新以使用原始代码段:

transform需要像上面那样进行更改,translateX()translateY()需要一些调整才能起作用。

以下是适用于Chrome,Firefox,Edge和IE11的代码:

.parent {
  width: 200px;
  height: 200px;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
}

.child {
  background-color: #e2001a;
  position: absolute;
  right: -65px;
  width: 220px;
  height: 50px;
  transform: translateX(10%) rotate(45deg) translateY(100%); //wokring with translateX and translateY instead of just rotate
  display: table;
  z-index: 10;
  color: white;
  text-align: center;
  line-height: 1.2;
}
<div class="parent">
  <span class="child">Some cool text</span>
</div>