The style sheet looks like
CODE
BODY {
font-family: verdana,arial;
background-color: red;
background-repeat: no-repeat;
background-position: top center
}
#SlotsWindow {
position:absolute;
background-color: pink;
top: 125;
left: 205;
width:26%;
height:80%;
overflow: hidden;
}
#TablesWindow {
position:absolute;
background-color: blue;
left: 710;
width:25%;
height:80%;
top: 125;
overflow: hidden;
}
#SlotsText {
font-size: large;
position: absolute;
left: 5;
}
#TablesText {
font-size: large;
position: relative;
right: 5;
}
font-family: verdana,arial;
background-color: red;
background-repeat: no-repeat;
background-position: top center
}
#SlotsWindow {
position:absolute;
background-color: pink;
top: 125;
left: 205;
width:26%;
height:80%;
overflow: hidden;
}
#TablesWindow {
position:absolute;
background-color: blue;
left: 710;
width:25%;
height:80%;
top: 125;
overflow: hidden;
}
#SlotsText {
font-size: large;
position: absolute;
left: 5;
}
#TablesText {
font-size: large;
position: relative;
right: 5;
}
If you look when the position number in the left column changes from single digit to double digit and also when it changes from double to triple the text get misaligned whereas the right column works fine.
Please help.
Excuse the daft colours bur that was to help me.


Answers