我有 2 个 div 需要彼此相邻显示。第一个 div 只有一个数字,另一个是链接。当浏览器(Firefox 和 chrome)调整大小时,它会将第二个 div 放在新行上,然后换行。我希望第二个 div 的文本与第一个 div 内联。
这是我的代码
<html>
<body>
<style>
.row {
border: 1px solid yellow;
width: 100%;
overflow: auto;
}
.cell {
float:left;
border: 1px solid red;
}
</style>
<div class="row">
<div class="cell"><span>1</span></div>
<div class="cell">
<a>This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.</a>
</div>
</div>
</body>
</html>
这是我在 Firefox 中得到的,但这不是我想要的
这就是我在 IE 中得到的,这就是我想要的。