Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.
print.css combining with <div overflow:auto>?
I want to use a print.css to control what area of my webpage will be printed.
But the text I want to be printed is in a div with overflow:auto. When the page is printed only the text visible on the screen is printed. How can I also let the text of the div not visible been printed?
1 Antwort
- Leo DLv 6vor 1 JahrzehntBeste Antwort
You need to specify that the division's overflow is auto within a stylesheet. Because if you use the style attribute, it will be too specific and override anything in the print stylesheet.
You can specify a bigger height for the division or specify that the media is "screen" for overflow: auto.
What I suggest is that instead you specify "overflow: visible;" in the print stylesheet.