Bonjour,
J'ai codé mon page dans un grand écran, et sur mon petit pc il s'affiche pas correctement.
Je suis nulle en html mais voici mon code:
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<HTML>
<HEAD>
<title>tara.fr</title>	
	<STYLE>
#een{
	background-image: url("immage/een.png");
    background-repeat: no-repeat;
	float: left;
	margin-left: 260px;
	width: 20%;
	margin-top:50px;
	clear: both;
}
#twee{
    background-image: url("immage/twee.png");
	background-repeat: no-repeat;
	width: 20%;
	float: left;
	margin-top:50px;
}
#drie{
	background-image: url("immage/drie.png");
	background-repeat: no-repeat;
    margin-top:50px;
    width: 35%;
    float: left;
}
#vier{
	background-image: url("immage/vier.png");
	background-repeat: no-repeat;
	float: left;
	margin-left: 260px;
	width: 20%;
	margin-top: 50;
	clear: both;
}
#vijf{
	background-image: url("immage/vijf.png");
	background-repeat: no-repeat;
	width: 20%;
	float: left;
	margin-top: 50px;
}
#zes{
	background-image: url("immage/zes.png");
	background-repeat: no-repeat;
	margin-top: 50px;
	width: 35%;
	float: left;
}
#zeven{
	background-image: url("immage/zeven.png");
	background-repeat: no-repeat;
	float: left;
	margin-left: 260px;
	width: 20%;
	margin-top: 50;
    clear: both;
}
#acht{
	background-image: url("immage/acht.png");
	background-repeat: no-repeat;
	width: 20%;
	float: left;
	margin-top: 50px;
}
#negen{
	background-image: url("immage/negen.png");
	background-repeat: no-repeat;
	margin-top: 50px;
	width: 35%;
	float: left;
}
	</STYLE>
</HEAD>
<BODY bgcolor="#000000">
 
   	<div id="een"><img src="immage/een.png"></div>
    <div id="twee"><img src="immage/twee.png"></div>
    <div id="drie"><img src="immage/drie.png"></div>
    <div id="vier"><img src="immage/vier.png"></div>
    <div id="vijf"><img src="immage/vijf.png"></div>
    <div id="zes"><img src="immage/zes.png"></div>
    <div id="zeven"><img src="immage/zeven.png"></div>
    <div id="acht"><img src="immage/acht.png"></div>
    <div id="negen"><img src="immage/negen.png"></div>                            
 
</BODY>
</HTML>
comment je peux faire pour être sur que ma page s'affiche correctement en tout résolution?