Bonjour,
Je me suis aperçu que je n'ai pas accès au code source de la page (menu bouton droit de la souris) lorsque la souris est sur une image, c'est pour le moins inexplicable : si on a une image en fond d'écran, on est coincé. Voici un extrait de mon code assez basique :Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"> <head> <!-- utf-8 est l'encodage unicode qui permet de prendre en compte tous les caractères existants, il est compatible de tous les navigateurs --> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <style type="text/css"> html{ } body { position: "absolute"; font-family: "Times New Roman", Times, sans-serif; font-size: 14pt; font-style: normal; color: #000000; background-color: #ECE9D8; } #image-etendue { position : absolute; height : 90%; top : 0; } /* content : partie centrale */ #content { position : fixed; border-top : 2px solid #dedede; /* background-image: url(Images/image_de_fond.jpg); background-repeat: no-repeat; */ top : 81px; left : 225px; margin : auto; bottom : 30px; right : 20px; overflow : auto; } </style> </head> <body link="#00FFFF" onload="makeopt(-10,imgtest1);makevisible()" onunload="clearTimeout(vitessedefil)" > <div id="content"> <img src="Images/image_de_fond.jpg" id="image-etendue"> </div> </body> </html>
Partager