Mycket flitig postare
|
|
Reg.datum: Jul 2004
Inlägg: 701
|
|
Mycket flitig postare
Reg.datum: Jul 2004
Inlägg: 701
|
Då kan du lägga a innanför exempelvis en div
div a {
background:url(images/bild.jpg);
background-repeat:no-repeat;
height:60px;
width:400px;
display:block;
}
<div>
</div>
Anledningen är att du inte vill att alla länkar ska drabbas.
Dessutom borde Mambo tillåta att man åtminstone ger Div-taggen ett id och då blir det ännu bättre:
#bild a {
background:url(images/bild.jpg);
background-repeat:no-repeat;
height:60px;
width:400px;
display:block;
}
<div id="bild">
</div>
|