Cod: Selectaţi tot
body {overflow: hidden;}
În browser-ul Firefox, nu pot da scroll la pagină(perfect), dar în Chrome pot să dau scroll...
Care este soluția problemei mele și care este cauza?
Mulțumesc! O zi bună!!!
Cod: Selectaţi tot
body {overflow: hidden;}
Cod: Selectaţi tot
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Title</title>
<style>
html, body {
margin: 0;
overflow: hidden;
padding: 0;
}
#parent {
position: relative;
width: 2000px;
height: 2000px;
background:red;
padding: 22px;
}
#parent #child {
width: 2000px;
height: 2000px;
background:blue;
}
</style>
</head>
<body>
<div id="parent">Div parent 2000px.
<div id="child">Div child 2000px.</div>
</div>
</body>
</html>