| 12
 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
 
 |  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
	<head>
		<title>Menu</title>
		<script type="text/javascript" src="jquery-1.3.2.js"></script>
		<script type="text/javascript" src="corner.js"></script>
		<style>
			.outer { float: left; margin: 15px; background: #c82; padding: 8px; width: 22em } 		
			.inner{ background: #fff}
		</style>
	</head>
	<body>
			<div class="outer">
				<div  class="inner" id="id_toto">
					<p>bla</p>
					<p>bla</p>
					<p>bla</p>
					<p>bla</p>
					<p>bla</p>
				</div>
			</div>
		<script>
			$("#id_toto").corner("round 14px").parent().css('padding', '15px').corner("round 14px")
		</script>
	</body>
</html> | 
Partager