IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Mise en page CSS Discussion :

Layout à 3 colonnes + header et footer


Sujet :

Tableau en CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    143
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 143
    Par défaut Layout à 3 colonnes + header et footer
    Bonjour,

    J'ai trouvé le layout presque parfait que je recherche à 3 colonnes

    Voici l'adresse pour tout le code nécessaire :
    http://matthewjamestaylor.com/blog/perfect-3-column.htm
    avec quelques explications.


    J'essais à maintes reprises de le modifier légèrement pour le % des colonnes,

    Je voudrais ma colonne de gauche à 25% (de visuel)
    Mon centre à 40% (de visuel)
    et la colonne de droite à 35% (de visuel)
    Sur une largeur totale de 1024px ou 100%

    Je n'y suis toujours pas arrivé, quelqu'un peut-il m'aider ?

    Merci !

  2. #2
    Modérateur
    Avatar de Bisûnûrs
    Profil pro
    Développeur Web
    Inscrit en
    Janvier 2004
    Messages
    9 931
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Janvier 2004
    Messages : 9 931
    Par défaut
    Si tu as des margin ou des padding horizontaux dans tes blocs, n'oublie pas de les compter dans la largeur totale de tes blocs.

  3. #3
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    143
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 143
    Par défaut
    Citation Envoyé par Bisûnûrs Voir le message
    Si tu as des margin ou des padding horizontaux dans tes blocs, n'oublie pas de les compter dans la largeur totale de tes blocs.
    Ce n'est pas si simple même si ça en l'air :

    Voici le code css avec les commentaires :

    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
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
     
     
     <style media="screen" type="text/css">
        /* <!-- */
        body {
            margin:0;
            padding:0;
            font-size:90%;
        }
    	/* header styles */
        #header {
    		clear:left;
    		float:left;
    		width:100%;
    		overflow:hidden;
    		border-bottom:4px solid #000;
        }
    	#header p,
    	#header h1,
    	#header h2 {
    		clear:left;
    		float:left;
    		width:96%;
    		margin:0;
    		padding:.4em 2% .1em 2%;
    	}
    	#header ul {
    		clear:left;
    		float:left;
    		width:96%;
    		margin:.7em 0 0 2%;
    		padding:0;
    		list-style:none;
    	}
    	#header ul li {
    		display:inline;
    	}
    	#header ul li a {
    		display:block;
    		float:left;
    		list-style:none;
    		padding:.2em .5em;
    		text-decoration:none;
    		margin-right:10px;
    		border-top:1px solid #ddd;
    		border-left:1px solid #ddd;
    		border-right:1px solid #ddd;
    	}
    	#header ul li a.active {
    		font-weight:bold;
    		color:#fff;
    		background:#000;
    		border-top:1px solid #000;
    		border-left:1px solid #000;
    		border-right:1px solid #000;
    	}
    	/* column container */
    	.colmask {
    		clear:both;
    		float:left;
    		width:100%;				/* width of page */
    		overflow:hidden;
    	}
    	/* common column settings */
    	.colright,
    	.colmid,
    	.colleft {
    		float:left;
    		width:100%;				/* width of page */
    		position:relative;
    	}
    	.col1,
    	.col2,
    	.col3 {
    		float:left;
    		position:relative;
    		padding:.5em 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
    								only padding top and bottom is included here, make it whatever value you need */
    		overflow:hidden;
    	}
    	/* 3 Column settings */
    	.threecol {
    		background:#f4f4f4;		/* right column background colour */
    	}
    	.threecol .colmid {
    		right:25%;				/* width of the right column */
    		background:#fff;		/* center column background colour */
    	}
    	.threecol .colleft {
    		right:50%;				/* width of the middle column */
    		background:#f4f4f4;		/* left column background colour */
    	}
    	.threecol .col1 {
    		width:46%;				/* width of center column content (column width minus padding on either side) */
    		left:102%;				/* 100% plus left padding of center column */
    	}
    	.threecol .col2 {
    		width:21%;				/* Width of left column content (column width minus padding on either side) */
    		left:31%;				/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
    	}
    	.threecol .col3 {
    		width:21%;				/* Width of right column content (column width minus padding on either side) */
    		left:85%;				/* Please make note of the brackets here:
    								(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
    	}
    	/* Footer styles */
    	#footer {
            clear:both;
            padding:1em 2%;
    		border-top:1px solid #ccc;
        }
        /* --> */
        </style>

  4. #4
    Modérateur
    Avatar de Bisûnûrs
    Profil pro
    Développeur Web
    Inscrit en
    Janvier 2004
    Messages
    9 931
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Janvier 2004
    Messages : 9 931
    Par défaut
    On peut avoir le code HTML correspodant ?

  5. #5
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    143
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 143
    Par défaut
    Citation Envoyé par Bisûnûrs Voir le message
    On peut avoir le code HTML correspodant ?
    Code html : 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
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
     
    <body>
     
    <div id="header">
    	<p><a href="http://matthewjamestaylor.com/blog/perfect-multi-column-liquid-layouts" title="Perfect multi-column liquid layouts - iPhone compatibles">&laquo; Back to the main article</a> by <a href="http://matthewjamestaylor.com">Matthew James Taylor</a></p>
        <h1>The Perfect 3 Column Liquid Layout</h1>
     
    	<h2>No CSS hacks. SEO friendly. No Images. No JavaScript. Cross-browser &amp; iPhone compatible.</h2>
        <ul>
    		<li><a href="perfect-3-column.htm" class="active">3 column</a></li>
        	<li><a href="perfect-2-column-left-menu.htm">2 column (left menu)</a></li>
        	<li><a href="perfect-2-column-right-menu.htm">2 column (right menu)</a></li>
    		<li><a href="perfect-2-column-double-page.htm">2 column (double page)</a></li>
     
    		<li><a href="perfect-full-page.htm">Full page</a></li>
        	<li><a href="perfect-stacked-columns.htm">Stacked columns</a></li>
        </ul>
    </div>
    <div class="colmask threecol">
        <div class="colmid">
    		<div class="colleft">
    			<div class="col1">
    				<!-- Column 1 start -->
     
    				<h2>Dimensions of the three column layout</h2>
    				<img src="perfect-3-column-dimensions.gif" width="350" height="370" alt="Three column layout dimensions" />
    				<p>All the dimensions are in percentage widths so the layout adjusts to any screen resolution. Vertical dimensions are not set so they stretch to the height of the content.</p>
    				<h3>Maximum column content widths</h3>
    				<p>To prevent wide content (like long URLs) from destroying the layout (long content can make the page scroll horizontally) the column content divs are set to overflow:hidden. This chops off any content that is wider than the div. Because of this, it's important to know the maximum widths allowable at common screen resolutions. For example, if you choose 800 x 600 pixels as your minimum compatible resolution what is the widest image that can be safely added to each column before it gets chopped off? Here are the figures:</p>
    				<dl>
    					<dt><strong>800 x 600</strong></dt>
     
    					<dd>Left &amp; right columns: 162 pixels</dd>
    					<dd>Center page: 357 pixels</dd>
    					<dt><strong>1024 x 768</strong></dt>
    					<dd>Left &amp; right columns: 210 pixels</dd>
    					<dd>Center page: 459 pixels</dd>
     
    				</dl>
    				<h2>The nested div structure</h2>
    				<p>I've colour coded each div so it's easy to see:</p>
    				<img src="perfect-3-column-div-structure.gif" width="350" height="369" alt="Three column layout nested div structure" />
    				<p>The header, colmask and footer divs are 100% wide and stacked vertically one after the other. Colmid is inside colmask and colleft is inside colmid. The three column content divs (col1, col2 &amp; col3) are inside colleft. Notice that the main content column (col1) comes before the other columns.</p>
    				<!-- Column 1 end -->
     
    			</div>
    			<div class="col2">
    				<!-- Column 2 start -->
    				<h2>No CSS hacks</h2>
    				<p>The CSS used for this layout is 100% valid and hack free. To overcome Internet Explorer's broken box model, no horizontal padding or margins are used. Instead, this design uses percentage widths and clever relative positioning.</p>
    				<h2>SEO friendly</h2>
    				<p>The higher up content is in your page code, the more important it is considered by search engine algorithms. To make your website as optimised as possible your main page content must come before the side columns. This layout does exactly that: The center page comes first, then the left column and finally the right column (see the nested div structure diagram for more info). The columns can also be configured to any other order if required.</p>
     
    				<h2>Full length column background colours</h2>
    				<p>In this layout the background colours of each column will always stretch to the length of the longest column. This feature was traditionally only available with table based layouts but now with a little CSS trickery we can do exactly the same with divs. Say goodbye to annoying short columns!</p>
    				<h2>No Images</h2>
    				<p>This layout requires no images. Many CSS website designs need images to colour in the column backgrounds but that is not necessary with this design. Why waste bandwidth and precious HTTP requests when you can do everything in pure CSS and XHTML?</p>
    				<h2>No JavaScript</h2>
    				<p>JavaScript is not required. Some website layouts rely on JavaScript hacks to resize divs and force elements into place but you won't see any of that nonsense here.</p>
     
    				<h2>Resizable text compatible</h2>
    				<p>Resizable text is important for web accessibility. People who are vision impaired can make the text larger so it's easier for them to read. This layout is fully compatible with resizable text.</p>
    				<h2>Stackable columns</h2>
    				<p>Use <a href"perfect-stacked-columns.htm">stackable columns</a> to get an unlimited number of layout possibilities.</p>
    				<h2>FREE for anyone to use</h2>
     
    				<p>You don't have to pay anything. Simply view the source of this page and save the HTML onto your computer. My only suggestion is to put the CSS into a separate file. If you are feeling generous however, link back to this page so other people can find and use this layout too.</p>
    				<!-- Column 2 end -->
    			</div>
    			<div class="col3">
    				<!-- Column 3 start -->
    				<h2>Browser Compatibility</h2>
    				<p>This 3 column liquid Layout has been tested on the following browsers:</p>
     
    				<h3>iPhone &amp; iPod Touch</h3>
    				<ul>
    					<li>Safari</li>
    				</ul>
    				<h3>Mac</h3>
    				<ul>
     
    					<li>Safari</li>
    					<li>Firefox</li>
    				</ul>
    				<h3>Windows</h3>
    				<ul>
    					<li>Firefox 1.5 &amp; 2</li>
     
    					<li>Safari</li>
    					<li>Opera 8.1 &amp; 9</li>
    					<li>Explorer 5.5, 6 &amp; 7</li>
    					<li>Netscape 8</li>
    				</ul>
     
    				<!-- Column 3 end -->
    			</div>
    		</div>
        </div>
    </div>
    <div id="footer">
        <p>View more <a href="http://matthewjamestaylor.com/blog/-website-layouts">website layouts</a>.</p>
    </div>
     
    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-1848067-8";
    urchinTracker();
    </script>
     
    </body>
    </html>

    sans les images mais le mieux est d'aller voir sur : http://matthewjamestaylor.com/blog/perfect-3-column.htm

    Merci !

  6. #6
    Membre Expert
    Avatar de Candygirl
    Femme Profil pro
    Inscrit en
    Juillet 2006
    Messages
    1 912
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 53
    Localisation : Suisse

    Informations forums :
    Inscription : Juillet 2006
    Messages : 1 912
    Par défaut
    Citation Envoyé par sperron Voir le message
    Sur une largeur totale de 1024px
    Tu sous-entends que tu souhaites un design de taille fixe?

    Pour un design de taille fixe, je pense que la solution avec une seule image de fond est plus efficace et évite de se prendre la tête avec une structure aussi lourde. Ce montage n'a de réel intérêt que pour un design fluide (et comporte aussi ses limitations quand bien même il s'appelle "Perfect"

    Qqch du genre devrait correspondre à ce que tu souhaites:

    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
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
        /* <!-- */
        body {
            margin:0;
            padding:0;
            font-size:90%;
    				width:1024px;
    				margin:0 auto;
        }
    	/* header styles */
        #header {
    		clear:left;
    		float:left;
    		width:100%;
    		overflow:hidden;
    		border-bottom:4px solid #000;
        }
    	#header p,
    	#header h1,
    	#header h2 {
    		clear:left;
    		float:left;
    		width:96%;
    		margin:0;
    		padding:.4em 2% .1em 2%;
    	}
    	#header ul {
    		clear:left;
    		float:left;
    		width:96%;
    		margin:.7em 0 0 2%;
    		padding:0;
    		list-style:none;
    	}
    	#header ul li {
    		display:inline;
    	}
    	#header ul li a {
    		display:block;
    		float:left;
    		list-style:none;
    		padding:.2em .5em;
    		text-decoration:none;
    		margin-right:10px;
    		border-top:1px solid #ddd;
    		border-left:1px solid #ddd;
    		border-right:1px solid #ddd;
    	}
    	#header ul li a.active {
    		font-weight:bold;
    		color:#fff;
    		background:#000;
    		border-top:1px solid #000;
    		border-left:1px solid #000;
    		border-right:1px solid #000;
    	}
    	/* column container */
    	.colmask {
    		clear:both;
    		float:left;
    		width:100%;				/* width of page */
    		overflow:hidden;
    	}
    	/* common column settings */
    	.colright,
    	.colmid,
    	.colleft {
    		float:left;
    		width:100%;				/* width of page */
    		position:relative;
    	}
    	.col1,
    	.col2,
    	.col3 {
    		float:left;
    		position:relative;
    		padding:.5em 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
    								only padding top and bottom is included here, make it whatever value you need */
    		overflow:hidden;
    	}
    	/* 3 Column settings */
    	.threecol {
    		background:#f4f4f4;		/* right column background colour */
    	}
    	.threecol .colmid {
    		right:35%;				/* width of the right column */
    		background:#fff;		/* center column background colour */
    	}
    	.threecol .colleft {
    		right:40%;				/* width of the middle column */
    		background:#f4f4f4;		/* left column background colour */
    	}
    	.threecol .col1 {
    		width:36%;				/* width of center column content (column width minus padding on either side) */
    		left:102%;				/* 100% plus left padding of center column */
    	}
    	.threecol .col2 {
    		width:21%;				/* Width of left column content (column width minus padding on either side) */
    		left:41%;				/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
    	}
    	.threecol .col3 {
    		width:31%;				/* Width of right column content (column width minus padding on either side) */
    		left:85%;				/* Please make note of the brackets here:
    								(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
    	}
    	/* Footer styles */
    	#footer {
            clear:both;
            padding:1em 2%;
    		border-top:1px solid #ccc;
        }
        /* --> */
    Pour conserver la compatibilité IE mode quirks, il serai plus judicieux d'ajouter un conteneur à tout le site et de lui attribuer à lui le width et margin.
    Les bons réflexes:
    • avant de poser une question:
      règles | faq | tutoriels | recherche
    • clarté, politesse, vocabulaire et orthographe soignés = efficacité
    • remercier ceux qui ont pris le temps d'aider et :resolu: si c'est le cas

  7. #7
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    143
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 143
    Par défaut
    Citation Envoyé par Candygirl Voir le message

    Qqch du genre devrait correspondre à ce que tu souhaites:

    Pour conserver la compatibilité IE mode quirks, il serai plus judicieux d'ajouter un conteneur à tout le site et de lui attribuer à lui le width et margin.
    SUPER !!!!!

    J'ai mis width à 100% dans le body (au lieu de 1024px) et modifié les % selon ton code et c'est merveilleux c'est exactement ce que je recherche.

    Merci pour ton aide !

    Une dernière petite question:

    Avec ce code sur FF le son des effets est comme un peu en retard (lorsque je survole le menu avec la souris il y a un petit son) mais avec IE c'est ok, savez-vous pourquoi ?

    Encore merci !

  8. #8
    Membre expérimenté
    Profil pro
    Inscrit en
    Février 2007
    Messages
    265
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : France

    Informations forums :
    Inscription : Février 2007
    Messages : 265
    Par défaut
    Salut,

    pour faire les pourcentages, tu dois juste modifier les deux styles suivants :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    .threecol .colmid {
    	right:25%;				/* width of the right column */
    	background:#fff;		/* center column background colour */
    }
    .threecol .colleft {
    	right:50%;				/* width of the middle column */
    	background:#f4f4f4;		/* left column background colour */
    }
    Dans ton cas tu dois donc faire :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    .threecol .colmid {
    	right:35%;				/* width of the right column */
    	background:#fff;		/* center column background colour */
    }
    .threecol .colleft {
    	right:40%;				/* width of the middle column */
    	background:#f4f4f4;		/* left column background colour */
    }
    Par défaut, la colonne de gauche sera donc de 100 - (35+40) = 25%, ce qui correspond a ce que tu veux.

    Pour les 1024px tu rajoutes ca dans la balise body :
    Dis si ca correspond a ce que tu cherches ...

  9. #9
    Membre Expert
    Avatar de Candygirl
    Femme Profil pro
    Inscrit en
    Juillet 2006
    Messages
    1 912
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Âge : 53
    Localisation : Suisse

    Informations forums :
    Inscription : Juillet 2006
    Messages : 1 912
    Par défaut
    Citation Envoyé par jln13 Voir le message
    pour faire les pourcentages, tu dois juste modifier les deux styles suivants
    Cela ne suffit pas. Ce montage utilise une imbrication de div avec une couleur de fond pour simuler les colonnes de mêmes hauteurs sans javascipt ni image de fond, en jouant avec le positionnement relatif et le overflow:hidden.

    En plus de la larger des colonnes à modifier il y a aussi tout le calcul des positionnements relatifs qui dépendent desdites largeurs mais aussi des padding, si tu lis tous les commentaires du code-source css.
    Les bons réflexes:
    • avant de poser une question:
      règles | faq | tutoriels | recherche
    • clarté, politesse, vocabulaire et orthographe soignés = efficacité
    • remercier ceux qui ont pris le temps d'aider et :resolu: si c'est le cas

  10. #10
    Membre confirmé
    Profil pro
    Inscrit en
    Mai 2004
    Messages
    143
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2004
    Messages : 143
    Par défaut
    Citation Envoyé par jln13 Voir le message


    Dans ton cas tu dois donc faire :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    .threecol .colmid {
    	right:35%;				/* width of the right column */
    	background:#fff;		/* center column background colour */
    }
    .threecol .colleft {
    	right:40%;				/* width of the middle column */
    	background:#f4f4f4;		/* left column background colour */
    }
    Par défaut, la colonne de gauche sera donc de 100 - (35+40) = 25%, ce qui correspond a ce que tu veux.

    Dis si ca correspond a ce que tu cherches ...
    J'ai essayé mais la couleur de la collone du centre ne suit pas sa largeur respective et la colonne de droite demeure un peu "caché" par la droite à moins de tout étiré. C'est pourquoi je préfère fonctionner avec les "%" ou ajouter une une largeur min pour la colonne de droite.

    Merci de bien vouloir m'aider !

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 3
    Dernier message: 21/05/2007, 13h42
  2. Imprimer sans header ni footer
    Par Megoy dans le forum ASP.NET
    Réponses: 4
    Dernier message: 04/05/2007, 13h23
  3. [FPDF] Méthodes header et footer
    Par dun73 dans le forum Bibliothèques et frameworks
    Réponses: 1
    Dernier message: 17/03/2006, 10h00
  4. mise en page (Header and Footer) en XML-XSL.
    Par christine dans le forum XSL/XSLT/XPATH
    Réponses: 4
    Dernier message: 01/03/2004, 16h31

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo