My current layout is causing an issue where one of the rows appears lower than expected. It's a fixed three row layout, but the second row is being pushed down unexpectedly. Here is the fiddle and code below for reference.
Cascading Style Sheets (CSS)
body, html{
margin:0px;
padding:0px;
width:100%;
height:100%;
background-color:black;
}
#wrapper{
width:100%;
height:100%;
padding:0px;
margin:0px;
background-color:black;
min-width:1050px;
}
... (CSS continues)
HyperText Markup Language (HTML)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
... (HTML continues)