CSS Parsing Error on validation...
w3c CSS validation points to a parsing error on line 153. The closing bracket appears okey to me, but obviously I'm missing something.
============CSS as follows===============
@charset "UTF-8";
/* Simple fluid media
Note: Fluid media requires that you remove the media's height and width attributes from the HTML
http://www.alistapart.com/articles/fluid-images/
*/
img, object, embed, video {
max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
width:100%;
}
/*
Dreamweaver Fluid Grid Properties
----------------------------------
dw-num-cols-mobile: 5;
dw-num-cols-tablet: 8;
dw-num-cols-desktop: 12;
dw-gutter-percentage: 15;
Inspiration from "Responsive Web Design" by Ethan Marcotte
http://www.alistapart.com/articles/responsive-web-design
and Golden Grid System by Joni Korpi
*/
/* Mobile Layout: 480px and below. */
h2 {
margin-bottom: 5px;
margin-top: 5px;
padding: 0px;
}
.gridContainer {
width: 100%;
padding: 0px;
}
#Header {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
color: #CCC;
text-align: center;
background: #000;
}
#navBar {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#content {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 0.5em 0em;
background-color: #000000;
color: #FFF;
display: block;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
.gridContainer {
width: 100%;
padding: 0%;
}
#Header {
clear: both;
float: left;
margin-left: 0;
margin-right: 0;
width: 100%;
display: block;
}
#navBar {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#content {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 0.5em 0em;
color: #FFF;
background: #000;
}
/* Desktop Layout: 769px to a max of 1232px. Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
.gridContainer {
width: 100%;
padding: 0%;
}
#Header {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#navBar {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#content {
clear: both;
/* [disabled]float: left; */
margin-left: 0;
width: 100%;
display: block;
}
#footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
color: #FFF;
padding: 0.5em 0em;
background: #000;
}
}