Bonjour,

J'ai un probleme avec les page-break-before et FF. Donc voici le code à peut pres :

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
	
<style type="text/css">
<!--
.Saut {page-break-before: always}
-->
</style>

<div align="center">
<?php
		for($p=0; $p<$tab[0]; $p++)
		{
		?>
		<div class="Saut" style="width:583; height:200; position:relative; left:0px; top:0px;">
						<div style="width:583; height:200; position:absolute; left:0px; top:0px;"><img src="images/billet_open.jpg" border="0" /></div>
						<div class="Style1" style="z-index:2; width:583; height:200; position:absolute; left:0px; top:0px;">
						<table border="0" width="583" height="178" cellpadding="0" cellspacing="0" align="center">
							<tr>
								<td width="206" height="20" align="center"></td>
							</tr>
							<tr>
								<td height="20" align="center"></td>
							</tr>
							<tr>
								<td height="20" align="center"></td>
							</tr>
							<tr>
								<td height="51" colspan="3" align="center"><?php if($tab[$p+2]==1){echo "Saut (avec video)";} else{echo "Saut (sans video)";} ?></td>
							</tr>
							<tr>
								<td width="206"></td>
							    <td width="235" height="21"><?php echo date("d/m/Y"); ?></td>								
								<td width="134"></td>
							</tr>
							<tr>
							<td width="206"></td>
								<td height="24"><?php echo $_POST['pour_bapt'.$p]; ?></td>
							  <td width="134"><div align="center"><?php echo $_POST['transID']; ?></div></td>
							<tr>
								<td width="206"></td>
								<td height="18"><?php echo $_POST['de_bapt'.$p]; ?></td>
								<td width="134"></td>
							</tr>
								<td height="2"></td>
							</tr>
						</table>
					</div>
		</div>
		<br />
		<?php }
?>
	</div>
En fait sous internet explorer le break marche mais pas sous FF... Quelqu un aurait'il une réponse?

Je suis obligé de faire ça car mes images sont coupés au bout de 2 pages!