2
I’d like a script that takes my div
with the class
master and define height: 100%
according to screen size.
html:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>*</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="master">
<header>
</header>
<footer>
</footer>
</div>
</body>
</html>
css:
*{}
html {
}
body {
margin: 0;
}
.container{
float: left;
width: 100%;
margin: 0 auto;
padding:0 15px;
}