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

Bild wird nicht komplett angezeigt

Status
Für weitere Antworten geschlossen.

gurbelunder

Neues Mitglied
Hallo nochmal
ich hoffe, ich verstoße gegen keine Regel, wenn ich mit neuem Problem, aber gleichem Projekt ein neues Thema öffne.
Ich habe auf meiner Seite EDV-Leipzig - Ihr Computerfachgeschäft in Leipzig rechts oben ein Bild eingefügt, dass allerdings nicht vollständig angezeigt wird. Das Bild wird über eine CSS - Datei als Hintergrundbild eines <td> Tags eingesetzt. wisst ihr evtl weiter?
Datei siehe hier:

Code:
    a:link         {     color:white;
                        text-decoration:none
                    }
                    
    a:visited     {     color:white;
                        text-decoration:none
                    }
                    
    a:hover         {     color:blue;
                        text-decoration:none;
                    }
                    
    a:active     {     color:white;
                        text-decoration:none;
                    }
    
    .bild          {    background-color:#636363
                     }
                 
    div.text      {     font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        font-weight:bold
                     }
             
    table.taba  {    table-layout:fixed;
                        width:15%;
                        float: left
                     }
    
    tr.tra         {    table-layout:fixed;
                     }
             
    td.tda         {    table-layout:fixed;
                        font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        text-align:center;
                        font-weight:bold
                     }
             
    table.tabb  {    table-layout:fixed;
                        width:85%;
                        float: right
                    }
             
    tr.trab         {    table-layout:fixed;
                        width:100%;
                        height:30%
                     }
             
    td.tdab         {    table-layout:fixed;
                        font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        text-align:center;
                        font-weight:bold;
                        font-size:200%;
                     }
                     
    td.tabbild    {    font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        width:7%;
                        background-image:url(../Bilder/Tux.jpg) <!-- hier ist das Bild -->
                    }
             
    tr.trbb         {    table-layout:fixed;
                        width:100%;
                     }
             
    td.tdbb         {    table-layout:fixed;
                        font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        font-weight:bold
                     }

    tr.w3c         {    table-layout:fixed;
                     }
             
    td.w3c         {    table-layout:fixed;
                        font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        font-weight:bold
                     }
                     
    td.kontakt    {    table-layout:fixed;
                        font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        text-align:center;
                        font-weight:bold
                    }

Über Hilfe würde ich mich sehr freuen. Danke euch im vorraus.
Gurbelunder
 
Da solltest du auch die größe angeben, woher soll CSS sonst wissen wie groß das bild ist?

height:100px;
width :61px;
 
meinst du damit die Größe des Bildes oder des <td> - Tags?
Hab die Angaben folgendermaßen gemacht:

Code:
	td.tabbild	{	font-family:Tahoma,sans-serif;
						font-style:normal;
						font-variant:normal;
						color:white;
						width:7%;
						background-image:url(../Bilder/Tux.jpg)
						width:61px;
						height:100px
					}

aber das Bild ist nun garnicht mehr da!
 
Code:
td.tabbild    {    font-family:Tahoma,sans-serif;
                        font-style:normal;
                        font-variant:normal;
                        color:white;
                        width:61px;
                        height:100px;
                        background-image:url(../Bilder/Tux.jpg)
                        
                    }
so müsste es gehen
 
Zuletzt bearbeitet:
Status
Für weitere Antworten geschlossen.
Zurück
Oben