inset
inset CSS 属性是与 top、right、bottom 和/或 left 属性相对应的缩写。它具有与 margin 速记相同的多值语法。
Try it
<div>
<span class="exampleText">Example text</span>
</div>
div {
background-color: yellow;
width: 150px;
height: 120px;
position: relative;
}
.exampleText {
writing-mode: sideways-rl;
position: absolute;
inset: 20px 40px 30px 10px;
background-color: #c8c800;
}