ページ上のラッパー内の任意の絶対位置にテキストを配置div
しています。最も自然な配置は、配置するテキストの要素ボックスの下端の中央のleft
との値を指定することです。top
私の現在のソリューションは、3 つのネストされた s で複雑に見えdiv
ます。もっと簡単な方法はありますか?
<div class="wrapper">
<div class="a">
<div class="b">
<div class="c">TEXT123<br/>TEXT123123</div>
</div>
</div>
<div class="a">↖</div> <!--for illustration only-->
</div>
と
.wrapper {width:300px; height:200px; background-color:yellow;}
.a {position:absolute; left:200px; top:100px;}
.b {position:absolute; bottom:0;}
.c {position:relative; left:-50%; border:solid 1px;}