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.
「改行/改行/折り返し」を作成せず、定義された幅のラッパーを持たずに、有限数のdivを右側に並べて配置するcssステートメントはありますか?
ラッパーコンテナの固定幅なしで、幅200pxと高さ60pxの100個のdivを1行に並べて配置するようなものですか?
divにはCSSが必要です。
display:inline-block;
そしてそれらの周りに含まれているdiv:
white-space:nowrap;
これを試して
.yourclass{ float:left; width:200px; height:60px; }
ワーキングリンクhttp://jsfiddle.net/TmSdx/