子DIV浮动在父DIV中的文本上

时间:2017-11-14 22:29:08

标签: css

我的父母有文字。在父母内部,我想让孩子正确,但也要在父母的文本顶部。像这样:

enter image description here

1 个答案:

答案 0 :(得分:-2)

这样的东西?



.wrapper {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: red;
  opacity: 0.5;
  width: 35px;
}

<div class="wrapper">
  Some Random Sample Text Here<div class="overlay"></div>
</div>
&#13;
&#13;
&#13;