Button beim Drucken ausblenden
franz
- html
Hi Leute!
Ich will ein Formular mit einem Button ausdrucken und diesen beim drucken ausblenden , nur sehe ich ihn auch nicht im IE. Kann ich das Formular auch drucken ohne das das Druckfenster vom IE erscheint???
<html>
<head>
<meta http-equiv="Content-Language" content="de-at">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Test zum</title>
<STYLE>
<!--
.Druckbutton { display: none; }
//-->
</STYLE>
</head>
<body>
<p>Test zum</p>
<p>Drucken</p>
<hr>
<input type="button" value=Drucken onclick="self.focus(); self.print();" class="Druckbutton">
</body>
</html>
Danke
Hallo Franz,
<STYLE>
@media print {
.Druckbutton { display: none; }
}
</STYLE>
siehe auch: http://de.selfhtml.org/css/formate/einbinden.htm#media
Viele Grüße,
Stefan