← HTML + CSS

[CSS] Fundo Fixo

Lida 6002 vezes

Offline

Thomato 
Membro
Mensagens 4125 Gostos 3
Feedback +2

Troféus totais: 28
Trófeus: (Ver todos)
Apple User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3 Level 2

Boas.

Quero fixar um fundo. Eu tive um código que dava pra IE e pra Mozilla.

Mas eu não o usei na altura e perdi-o.

Agora preciso dele mas só encontro um que só dá pra IE.

Citar
<body background="bg.jpg" bgproperties="fixed">

Este é o código que tou a usar.

Cumprimentos
Offline

HeM 
Membro
Mensagens 95 Gostos 0
Troféus totais: 24
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Poll Voter Poll Starter Level 4 Level 3 Level 2 Level 1 50 Posts

Se for no ficheiro CSS ou no HEAD:

body {
background-image: url('fundo.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
}

Se for inline:

<body style="background-image: url('fundo.jpg'); background-repeat: no-repeat; background-attachment: fixed;">

Já se aumentava o tamanho da fonte do bbcode CODE aqui do fórum, aquilo mal se vê...
Offline

Thomato 
Membro
Mensagens 4125 Gostos 3
Feedback +2

Troféus totais: 28
Trófeus: (Ver todos)
Apple User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3 Level 2

Obrigado.

Entretanto já tinha encontrado o outro.

Citar
<body style="background: url('endereçodaimagem') fixed;">


Obrigado na mesma.

Offline

Warrior 
Membro
Mensagens 203 Gostos 0
Troféus totais: 27
Trófeus: (Ver todos)
Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3 Level 2 Level 1

Obrigado.

Entretanto já tinha encontrado o outro.

Citar
<body style="background: url('endereçodaimagem') fixed;">


Obrigado na mesma.



È exactamente a mesma coisa que o HeM disse:

Citar
background: url('endereçodaimagem') no-repeat fixed;

igual a

Citar
background-image: url('endereçodaimagem');
background-repeat: no-repeat;
background-attachment: fixed;
Offline

Thomato 
Membro
Mensagens 4125 Gostos 3
Feedback +2

Troféus totais: 28
Trófeus: (Ver todos)
Apple User Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4 Level 3 Level 2

Sim.

O efeito é o mesmo :)

Só estava a mostrar o outro que entretanto tinha encontrado.