親コンテナーがあり、その中にもう 1 つのコンテナーが配置されています。子コンテナには、P タグ内にテキストがあります。幅はコンテナに定義されていますが。以下はHTML行です
<div class="textareaPopupWrapper" style="background-color: black;">
<div class="popupControl">
<p>This is the text to be display on Popup opens.</p>
</div>
この要素のスタイルは以下のようになります
.textareaPopupWrapper {
color: white;
display: block;
height: 100px;
left: 103%;
position: relative;
width: 100px;}
.popupControl {
color: red;
float: left;
height: auto;
position: absolute;
width: 90px;}