28221 sujets

CSS et mise en forme, CSS3

J'aimerais que l'image de droit reste en bas un peu comme Zen garden qui m'a servi (un peu!) d'exemple. Chez moi, l'image bouge avec les photos quand elles ont besoin d'être «remontées» pour être visionnées.
#body       {
	  font           	  : 10pt/12pt "Trebuchet MS", Verdana, Arial, Sans-serif;
	  color                   : #660000;
	  background		  : #EEEEEE url(cite22.jpg) no-repeat; bottom right;
	  margin	          : 0;
	  padding                 : 0;
	 }	
		  
.oiseaux	   
	 {
          position                : absolute;
          bottom            	  : 0;
          right			  : 0;
          }	
          
.cite22	   
	 {
          position                : absolute;
          bottom	          : 0;
          right			  : 0;
          }

Un exemple se trouve à : http://ppzx.net/image.jpg
En attendant de trouver je les ai installées toutes les deux en haut : http://ppzx.net/
Merci d'avance
Modifié le 04 Feb 2005 - 12:02
Voici la solution finale ! ah ah ah ! comme si elle pouvait être finale...

Feuille CSS :

body       { 
           font           		  : 10pt/12pt "Trebuchet MS", Verdana, Arial, Sans-serif;
           color                  : #660000;
           background			  : #EEEEEE url(cite22.jpg) no-repeat; bottom right;
           width                  : 100%;
		   }
          
.cite22	   
		  {
		  background-attachment   : fixed;
          position                : absolute;
          bottom	              : 0;
          right					  : 5px;
          } 
          
html>body .cite22 
		  {
		  position				  : fixed;
		  } 

pour le html :

<div class="cite22"> 
<img src="cite22.jpg" alt="" width="117" height="243" />
</div>

Voilà et fin ! Exemple :
http://ppzx.net/vignettes.php?theme=01beijing&infoexpo=1

Amitiés, pierreandre Smiley langue
Modifié le 06 Feb 2005 - 23:44