У меня есть DIV с некоторым содержимым, которое должно быть в режиме «Только чтение», поэтому я наложил его на другой DIV и установил курсор: no-drop.
Это хорошо работает и делает мой контент доступным только для чтения, но также не позволяет пользователю прокручивать контент DIV.
Как сохранить прокрутку содержимого в DIV.
.roDiv {
position: absolute;
height: 100%;
width: 100%;
cursor: no-drop;
z-index: 1000;
}
<div class="roDiv"></div>
<div id="content" style="overflow-y:scroll; height:90px;">Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>
Content goes here, <br/>and this division should be scrollable<br/> as the content can be longer</div>