I want a table that will retain its size on the screen regardless if the user zooms in or out. How can I do this using html/CSS? I used this in my CSS body.
body {
background: url(images/bg7.png) no-repeat;
background-size: 100%;
font-family : Verdana, Helvetica, Geneva, SunSans-Regular, sans-serif, arial ;
background-color: #C2A366;
margin: -0.6% 0px 0px 50px;
}
I want the table to stay the same size, just like the background, how is this possible?