Bonjour !

Ayant divisé ma page php en deux tableaus distincts, je voulais par ce biais qu'il y ai une scrollbar seulement dans la partie basse de ma page (car elle contient un long texte). Mais malheureusement la scrollbar se met sur tout ma page....

Comment faire ?

Merci d'avance !

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
function affichage($haut,$bas,$row)
{
	?>
	<table align=center cellpadding="20" cellspacing="0" width = 100% height = 30% border="0">
	<tr><td>
	<?
	haut($haut)
	?>
	</td></tr>
	</table>
	<table align=center cellpadding="0" cellspacing="0" width = 100% height = 70% border="0">
	<tr><td>
	<?
	bas($bas,$row)
	?>
	</td></tr>
	</table>
	</Body></Html>
	<?	
}