我的父母有文字。在父母内部,我想让孩子正确,但也要在父母的文本顶部。像这样:
答案 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;