隣り合わせに表示する必要がある2つのdivがあります。最初のdivには数字だけがあり、もう1つはリンクです。ブラウザ(Firefoxとchrome)のサイズが変更されると、2番目のdivが新しい行に配置され、テキストが折り返されます。2番目のdivのテキストを1番目の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で私が得るものです。