I want to make a HTML5 website using relative units. What would I want to use? Percentage?
I'm trying to do the following but my header isn't 10% of the body. At least it isn't displaying as such. The CSS below is what is contained within main.css
.
body{
background-color:red;
width:100%;
height:100%;
}
header{
margin-right:auto;
margin-left:auto;
width:960px;
background-color:#000000;
height:10%;
}
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta content="UTF-8">
<link rel="stylesheet" href="stylesheets/main.css">
</head>
<body>
<header>
testing
</header>
</body>
</html>