“Desative o excesso de rolagem” Respostas de código

Desative o Scroll 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

Desative o excesso de rolagem

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

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

Respostas semelhantes a “Desative o excesso de rolagem”

Perguntas semelhantes a “Desative o excesso de rolagem”

Procure respostas de código populares por idioma

Procurar outros idiomas de código