div 内的锚标记在最小化浏览器时显示在 div 外

Anchor tag inside the div is showing outside the div on minimizing the browser

当我最小化浏览器时,锚标记内的文本出现在 div 之外。

<ul style="font-size:18px;">
  <li >Goto you <a href="https://www.youstable.com/hosting/web-hosting" >https://www.youstable.com/hosting/web-hosting</a> and select the hosting plan you would like to go with.</li>
<li style="list-style-type:none">
<center><img src="images/hosting.png" class="img-responsive" alt="Paid Hosting"></center>
</li>
</ul>

已添加 属性 word-break

<ul style="font-size:18px;">
  <li >Goto you <a style="word-break: break-all;" href="https://www.youstable.com/hosting/web-hosting" >https://www.youstable.com/hosting/web-hosting</a> and select the hosting plan you would like to go with.</li>
<li style="list-style-type:none">
<center><img src="images/hosting.png" class="img-responsive" alt="Paid Hosting"></center>
</li>
</ul>