絶対位置のdiv内でテキストを折り返すのに問題があります。問題は、divのサイズがページに合わせて変更されるため、幅を100%に設定していることだと思います。テキストを折り返すにはどうすればよいですか。
これが私のコードです:
#content {
background: black;
min-height: 60px;
background: #0a0a0a;
position: relative;
padding: 0;
overflow: hidden;
}
#content .entry {
background: white;
position: absolute;
text-wrap: normal;
top: 0;
left: 200px;
padding: 10px;
width: 100%;
height: 100%;
min-height: 50px;
border-left: 1px solid #262626;
}
<div id="content">
<div class="entry">
<-----text---->
</div>
</div>