Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
IE6-IE7 でのセル表示の互換性の問題を認識しています。私の目標は、同じ行に 2 つの div 表示セルを表示することです。IE6 ~ IE7 を除くすべてのブラウザで、2 つの div が同じ行に表示されます。ただし、Quirks モード * float: を最初の div の左に置くと、div が同じ行に表示されることに気付きました。cssだけで癖モードを使わずに同じ行に置く方法は?
このCSSを使用してください:
body{ margin: 0 } #table{ display: table; width: 100%; height: 50px; *overflow:auto; } #r1{ display: table-cell; width: 30px; background-color: black; *float:left; } #r2{ display: table-cell; width: 30px; background-color: #eee; *float:left; }