> Hello All, > I need to link to a form that can be printed out and mailed. I know how > to do the online forms, but the person I'm making a site for doesn't > want that. > Is there a way to use CSS for this? > Thank You! > Donna
You can create a print style sheet and apply it with the media type print, but most browsers will let you down when it comes to styling form elements. There is also a problem consistency amongst browsers. As a print version of a form normally also collates data and you cannot examine the content of elements in CSS and make decisions dependent on that (well, in CSS2/3 you might) it is also less practical than a real - backend based - print version where you could for example only print out the options that were chosen from a 20 item checkbox list. -- Chris Heilmann Blog: http://www.wait-till-i.com Writing: http://icant.co.uk/ Binaries: http://www.onlinetools.org/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
