Hi all!
I have created a page where the content resides inside a table that are aligned in the middle of the page using CSS
But when the content becomes big enough vertically the table expands longer that the screen and the browser enables its scrollbar. (No news there..)
This would be the same horizontally, but this is allmost never used, fairly because of bad user interface/interaction.
And offcourse the entire content moves just about 17 pixels. Is there a way to rearrange the table those 17 pixels to the right, fast enough that the users would'nt notice it? this would somehow require a function that realizes the content have been moved.
Or maybe there are an automatic function somewhere developed specificly for this that the browser response to?
I have created a page where the content resides inside a table that are aligned in the middle of the page using CSS
Code:
#bodydiv{
margin-left: auto;
margin-right: auto;
width: 1000px;
}
This would be the same horizontally, but this is allmost never used, fairly because of bad user interface/interaction.
And offcourse the entire content moves just about 17 pixels. Is there a way to rearrange the table those 17 pixels to the right, fast enough that the users would'nt notice it? this would somehow require a function that realizes the content have been moved.
Or maybe there are an automatic function somewhere developed specificly for this that the browser response to?
Comment