simple padding problem - can't solve :-(
This is very simple SORRY but for some reason I keep getting this wrong.
I have created a div with a red background and I want to get rid of the margin on the left and right ie the padding.
In dreamweaver I set it to 0 padding but this does not work
not sure what I am doing wrong?
Many thanks

---------
----------
<!doctype html>
<html>
<style>
.header {
margin: 0;
padding: 0;
background-color: #FF0004;
}
@media (max-width:768px) and (min-width:401px){
}
@media (max-width:400px){
}
</style>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<link href="css/header-general.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="header">Content for New Div Tag Goes Here</div>
</body>
</html>
---------
---------
