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.
だから私は1行と2列のテーブルを持っています - 問題は、小さな画面のために列を互いの上に積み重ねたいということです。純粋なCSSを使用してこれが可能かどうかは誰にも分かりますか?
<tr> <td></td> <td></td> </tr>
float: leftソリューションの使用方法:
float: left
tr td { width: 200px; height: 100px; float: left; } tr { clear: left; }
例: http://jsfiddle.net/FCegx/