HTMLでのスクロールバーの削除
203 ワード
headに次のCSSを書き込むだけ
<style type="text/css">
body{
overflow-x: hidden;
overflow-y: hidden;
}
</style>