HTML gevorderde |
|
Citaat: je moet ook niet background= gebruiken dat is HTML, gebruik css
Met css kun je niet hetzelfde krijgen als een background= .., toch?
Ik wil namelijk een stilstaand achtergrondplaatje in mijn body (dus ook als er tekst wordt gescrold)...
Ik heb dit in m'n css staan:
BODY
{
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-color: rgb(255,255,255);
font-family: Arial;
font-size: 10pt;
font-weight: 500;
}
BODY { background-repeat: no-repeat; background-position: center center; background-attachment: fixed; background-color: rgb(255,255,255); font-family: Arial; font-size: 10pt; font-weight: 500; }
|