I have a top navigation section at the top of a web page and I have some content that is setup as
float: right;
this works great except that the content part of the page is now very wide (i have to set min-width: 1700px;
)
the issue is now the float: right
works great except when i scroll to the right, its no longer on the right.
my choices are either to:
- Make the top section
min-width:1700px
as well but them it would float right and it wouldn't be shown unless i scrolled to the right
Is there any way to have float: "rightofMonitor"
so it would default to the right side of the monitor viewing screen but when i scrolled over horizontally it will keep moving right.