Answers for "css enable scroll"

6

disable 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
}
Posted by: Guest on April-20-2020
6

div scrollable content

div{
	overflow : scroll;
}
Posted by: Guest on May-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language