お世話になります。
下記のようなコードでテーブルを作成してはみ出る部分をoverflow: scroll;しているのですが
横スクロールが効きません。
tdのwidth合計ははみ出すように設定しているのに勝手にtdのwidthが短くなり
overflowでスクロール設定をしてくれません。
*cssは見やすいように敢えてelement内に全て記載しております。
どなたか原因をご教示願えますでしょうか?
宜しくお願い申し上げます。
HTML
1<div class="content"> 2 <div class="content-1" style="overflow: scroll;"> 3 <p>Some content</p> 4 <table border="1" border-collapse="collapse"> 5<thead> 6 <tr> 7<td style="width:350px;white-space: nowrap;">XXXXXX</td> 8<td style="width:250px;white-space: nowrap;">1</td> 9<td style="width:250px;white-space: nowrap;">2</td> 10<td style="width:250px;white-space: nowrap;">3</td> 11<td style="width:250px;white-space: nowrap;">4</td> 12<td style="width:250px;white-space: nowrap;">5</td> 13<td style="width:250px;white-space: nowrap;">6</td> 14<td style="width:250px;white-space: nowrap;">7</td> 15<td style="width:250px;white-space: nowrap;">8</td> 16<td style="width:250px;white-space: nowrap;">9</td> 17<td style="width:250px;white-space: nowrap;">10</td> 18<td style="width:250px;white-space: nowrap;">11</td> 19 20 </tr> 21</thead> 22 23 24<tbody> 25<tr> 26<td style="width:350px;white-space: nowrap;">XXXXXXXX<br>[XXX]</td> 27<td>1234<br>201112</td> 28<td>1234<br>201206</td> 29<td>1234<br>201212</td> 30<td>1234<br>201212</td> 31<td>1234<br>201212</td> 32<td>1234<br>201212</td> 33<td>1234<br>201212</td> 34<td>1234<br>201212</td> 35<td>1234<br>201212</td> 36<td>1234<br>201212</td> 37<td>1234<br>201212</td> 38</tr> 39 40</tbody> 41</table> 42</div> 43</div>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/04/13 07:23
2017/04/13 07:28