I have the PopUp below that when I decrease the screen it does not create the scroll bar and it is not possible to see the complete content.
How can I create a scroll bar for when the browser is in a smaller size?
Full Screen - Normal:
SmallScreen-Ilosesomeofthecontent:
Code:
function OcultarDiv() {
var meuDialogConteudo = document.getElementById("meuDialog");
meuDialogConteudo.style.display = "none";
}
function MostrarDiv() {
var meuDialogConteudo = document.getElementById("meuDialog");
meuDialogConteudo.style.display = "block";
}
#meuDialog {
position: absolute;
width: 100%;
height: 100%;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.2);
padding: 20px;
overflow-y: auto;
}
#meuDialogConteudo {
position: fixed;
width: 600px;
height: 600px;
top: 50%;
margin-top: -300px;
left: 50%;
margin-left: -300px;
border: 1px double black;
background-color: deepskyblue;
overflow-y: auto;
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Exemplo - PopUp001</title>
</head>
<body>
<div id="meuDialog">
<div id="meuDialogConteudo">
<input id="meuBotaoOcultar" type="button" onclick="OcultarDiv();" value="X" style="float: right; margin: 6px; background-color: red;" />
<p>
Eu sou um popup criado com div e javascript sem usar jQuery.
</p>
</div>
</div>
<input id="meuBotaoMostrar" type="button" onclick="MostrarDiv();" value="Mostrar" style="margin: 6px; background-color: deepskyblue;" />
</body>
</html>