我正在尝试实现以下目标,如果标签的内容从一行流向另一行,则将其移动到新行,这样您就可以在这里看到我的意思http://jsfiddle.net/sNyzX/第一个示例(红色)显示情况我现在和第二个示例(橙色)显示了预期的效果,但是没有那个<br>
标签。这可以用纯 html 和 css 来实现吗,如果不是 jQuery 解决方案也可以。
<div id="example1">
Hi there This is some text and <a href="#"> this is the link! </a>
</div>
<div id="example2">
Hi there This is some text and <br> <a href="#"> this is the link! </a>
</div>
CSS:
#example1 {
background: red;
width: 145px;
}
#example2 {
background: orange;
width: 145px;
margin-top: 20px;
}