I am trying to position a DIV
element 200 pixels to the left of center.
My current code is as follows, but I have noticed that on higher resolution screens (such as 1920x1080), the DIV
tends to shift out of its intended position:
.hsonuc {
position: absolute;
top: 20px;
margin:auto;
margin-left:200px;
display:none;
}