“deshabilitar sobrevalorado” Código de respuesta

Desactivar el desplazamiento 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

deshabilitar sobrevalorado

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

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

Respuestas similares a “deshabilitar sobrevalorado”

Preguntas similares a “deshabilitar sobrevalorado”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código