• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Bild in Frame anzeigen

Status
Für weitere Antworten geschlossen.

lukiB

Mitglied
Kann ich ein Bild in ein Frame laden...nur ein Bild, was dann immer zu sehen ist, also ein Frame nur für ein bestimmtes Bild....?
geht das?
 
Ich weiß zwar nicht wozu das gut sein soll, aber entweder du lädst nur das Bild in den Frame (dann hast du abern weißen Rand):
Code:
<(i)frame src="pfad/bild.jpg" ...></(i)frame>
oder du erstellst dir ne HTML-Datei mit Bild drin und margin/padding = 0 (die du dann natürlich in den Frame lädst):
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="de-de">
    <head>
        <title>.</title>        
        <meta http-equiv="content-type" content="application/xhtml+xml; charset=iso-8859-1" />
        <style type="text/css">
          *, body {
            margin:0;
            padding:0;
          }
        </style>
    </head>
    <body>
      <img src="pfad/bild.jpg" alt="" />
    </body>
</html>
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben