Как отменить скролл у основного тела страницы и задать его элементу (модальному окну)?

191
04 апреля 2018, 07:05

Я делаю:

.body{
overflow-y:hidden;
}

Что еще нужно применить к <body> и к модальному окну?

Answer 1

body { 
	width: 100%; 
	height: 2000px; 
	overflow: hidden; /* скрывает скролл */ 
	padding: 0; 
	margin: 0; 
} 
 
.modal { 
	width: 400px; 
	height: 200px; 
	padding: 20px; 
	margin: 0 auto; 
	margin-top: 100px; 
    border: 1px solid #ccc; 
	overflow-y: scroll; /* применяет скролл к элементу */ 
	box-sizing: border-box; 
	background: #f1f1f1; 
}
<div class="modal"> 
	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p> 
</div>

READ ALSO
Чем отличается import от require при сборке webpack-ом

Чем отличается import от require при сборке webpack-ом

Добрый день всем, хотел узнать в чем различия между import-ом и required в javascriptНапример у нас есть два подключения

291
у меня не действует метод toLowerCase

у меня не действует метод toLowerCase

у меня не действует метод toLowerCase

233
Как создать событие

Как создать событие

Можно ли создать событие на динамически вставляемые элементы

216
Метод Обьект может быть Функция? что такое Array?

Метод Обьект может быть Функция? что такое Array?

Недавно столкнулсья с конструкцией ArrayНи где не смог найти документацию про него

238