Bild wird nicht komplett angezeigt

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 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
                }[/CODE]

Ü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 - Tags?
Hab die Angaben folgendermaßen gemacht:

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)

                }[/code]so müsste es gehen

RÜCKRUF VON MIR SELBST

Hab nur ein ; vergessen. SRY
Klappt wunderbar. Danke euch.

– SOLVED –