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.
HTML5 と CSS3 を使用して、画像のサムネイルの横長のストリップを作成したいと考えています。横にスクロールします。誰も私がどのように進むべきか教えてもらえますか?
CSSを設定してみてください:
<div style="white-space:nowrap; overflow-x: scroll"> <img><img><img> <!-- Images here --> </div>
nowrap はコンテンツの折り返しを防ぎ、overflow-x: scroll は x 方向のオーバーフローを引き起こし、スクロール バーを表示します。