I am new to css and am having problems with setting a single object(say a table) from a set percentage from the top of the page as well as the main background.
body {
background-image:url(mainbg.jpg);
background-repeat:repeat-x;
background-position: 0% 30%;
background-attachment:fixed;
background-color: #FFFFFF;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
table {
position: absolute; // tried different combinations here
top: 30%;
}
What should I be using for the table(or div)? Thanks