我有一个 div 我想保留我的文本,但是当我缩小窗口时,文本会分解并溢出底部。这似乎只是 chrome 中的一个问题,我希望有人可以帮助我。
.about{
float: left;
margin-left: 50px;
margin-bottom: 20px;
max-height: 226px;
max-width: 515px;
font-size: 16px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}
HTML:
<div class=about>
<h3>Welcome:</h3>
<p> All my Text goes here that keeps spilling out.</p>
</div>