Lets say I have a header banner on a webpage I'm about to print. Instead of wasting someone's ink printing the entire block of the image, is there a way via css to replace the image with text of H1 size?
|
|
You could put an |
||
|
|
|
|
According to CSS spec this should display the alt attribute after the image. Then you would just have to hide the image but I haven't managed to get it to work right in FF3 or chrome.
|
||
|
|
|
|
Adding to Adam's solution: If your text is fixed ("head banner was there" not "ad for such and such was there"), you can use :before or :after pseudo-elements to insert text instead of having the text pre-inserted in the HTML. I makes your HTML lighter if you are replacing many images with the same text. I have to say that I dislike this CSS feature, but it is there if you want to use it. |
||
|
|
|
|
I usually just add the following to my style sheet:
And then assign the noprint class to elements which shouldn't be printed:
And for your example, something like the following should work:
|
|||
|
|
|
|
Bryan, typically on things like logos I use image replacement for the graphic anyway so the logo itself is really in an H1 tag. Then in my print style sheet. I do something like this...
Which removes the image replacement and shows the text. Make sure of course that you call this stylesheet separately using |
||
|
|
