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 id="scroll" style="margin-left:auto;margin-right:auto;width:10000px;">
上記の div は、ユーザー インタラクションで水平方向にスクロールします。ユーザーに一度に 800px だけを見せたいので、オーバーフローを非表示にするにはどうすればよいですか。これは可能ですか?もしそうなら、どのように。不明な場合は申し訳ありません
<div class="Wrapper"> <div class="Content"> </div> </div> .Wrapper { width: 800px; overflow-x: scroll; /* or : overflow-x: auto; */ overflow-y: hidden; } .Content { width: 10000px; }