I know it's simple coding, but I think I am overthinking it. Here is what I have for the table info:
<table width = "1000px" cellspacing = "5">
It looks great on my resolution in all broswers which is 1366 by 768 but on a 1280 by 720 resolution the top background image cuts off. Initially I thought it was the table, but I put a border around it, and it still cut off. It's almost against common sense (in other words, wouldnt you see more of the "lightblue" color background on a larger resolution? Again, I think I am stuck in one mindset and I can't determine why on my widescreen monitor, it covers the screen, but not on a smaller monitor.
body {
background-color: lightblue;
margin: 0;
}
#top {
width: 100%;
height: 200px;
position: relative;
background-image: url('lightblue.jpg')
}
#bottom {
width: 100%;
height: 50%;
position: relative;
z-index: -1;
}