¿Cómo puedo superposicionar un fondo sobre otro fondo en css?
Publicado por paco01 (7 intervenciones) el 17/01/2017 12:16:30
Este es mi codigo, y me gustaria que flores.gif apareciese encima de fondo. Gracias.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
body {
background-image: url(etc/flores.gif);
background-image: url(etc/fondo.gif);
}
</head>
<body>
</body>
</html>
Valora esta pregunta


0