Okay so i am making a website and i have two divs both of which have a margin of 100%. i managed to get the first div to work but the second one isnt having any of it.
#header1 {
background-color:#000;
width:100%;
height: 50px;
position: absolute;
top: 0;
left: 0;
color:#FFF;
font-size:13px;
}
#navigation {
background-color:#000;
width: 100%;
height: 100px;
margin-top: 42px;
display: inline-block;
background-image: -webkit-linear-gradient(top,#333333,#222222);
background-image: -o-linear-gradient(top,#333333,#222222);
}
Any ideas?
#header1 {
background-color:#000;
width:100%;
height: 50px;
position: absolute;
top: 0;
left: 0;
color:#FFF;
font-size:13px;
}
#navigation {
background-color:#000;
width: 100%;
height: 100px;
margin-top: 42px;
display: inline-block;
background-image: -webkit-linear-gradient(top,#333333,#222222);
background-image: -o-linear-gradient(top,#333333,#222222);
}
Any ideas?