Bonjour,

Je n'arrive pas à réduire la taille des textes de mes balises "span", sous le navigateur Opéra, ca marche sous firefox, chrome, IE, avez vous une idée svp ?

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
<html>
<head>
<style type="text/css">
.fluxindex  { font-family: Verdana, Arial, Helvetica;
                        padding: 5px;
                        font-size: 15px;
                        width: 506px;
                        clear: both;
                        }
.fluxindex  a {color: #000;
                        font-weight:normal;
                        font-size: 15px;
                        text-decoration: none;
                        padding-left: 5px;
                        line-height:1.5;
                        }
.fluxindex  a:hover { color: #de3400; text-decoration: none; }
 
.source { font-size:5px;
	color:#3159AD;
	font-weight: bold;
	font-style: italic;
	}
 
 
.hre { color:gray;
	font-weight: bold;
	font-size:5px;
	}
 
 
</style>
 
</head>
 
 
<body>
 
 
<div class="fluxindex">
<span class="hre">00:48</span> - <a href="#">Lien 1</a><span class="source"> - Source1</span><br/> 
<span class="hre">00:24</span> - <a href="#">Lien 2</a><span class="source"> - Source2</span><br/> 
</div>
 
</body>
 
</html>