“Wyłącz Orscroll” Kod odpowiedzi

Wyłącz przewijanie CSS

/* Answer to: "disable scroll css" */

/*
  You must set the height and overflow of the body, to disable
  scrolling.
*/

html, body {
  margin: 0;
  height: 100%;
  overflow: hidden
}
TigerYT

Wyłącz Orscroll

<style>
	html {
      overflow: hidden;
      height: 100%;
  }

  body {
      height: 100%;
      overflow: auto;
  }
</style>
James Prentor

Odpowiedzi podobne do “Wyłącz Orscroll”

Pytania podobne do “Wyłącz Orscroll”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu