|
Posted by Spartanicus on 11/12/05 10:17
"Martin Nadoll" <martin@nadoll.de> wrote:
>i have a page with a div-Tag, positioned absolute, overflow:auto that shows
>a scrollbar, because content is to big.
Get rid of it, "scrolling divs" are a usability nightmare. Scrolling
with the wheel of a mouse is poorly supported, keyboard users cannot
scroll it at all.
Place a small bit of the content on the page followed by a "... More"
link that links to the full text.
>Now i have a button on that page called "print page".
>That is only a <a href"javascript:window.print()"> command.
Replicating a function found on all browsers serves no purpose, using
javascript is even more silly since a significant number of clients will
have javascript disabled.
--
Spartanicus
[Back to original message]
|