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 :

Mettre mon tableau en CSS


Sujet :

Tableau en CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Candidat au Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    2
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 2
    Par défaut Mettre mon tableau en CSS
    Bonjour

    Je possèdes un tableau en HTML que je voudrais convertir en CSS

    Mon tableau possède 6 lignes et 7 colonnes, et des cellules de 100 pixels de largeur sur 100 pixels de hauteur, ce qui fait 42 cellules

    Et il possède une 7e ligne tout en haut avec les 7 cellules fusionnées

    Ca fait des heures que je suis sur le Net et que j'essayes, et je m'arraches les cheveux

    Quelqu'un peut m'aider s'il vous plait?

    Merci beaucoup beaucoup


    Voilà ce que je voudrais:




    Voilà le code:

    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
     
     
    <table width="900" border="1" align="center" bordercolor="#000000">
      <tr>
        <td colspan="7">&nbsp;</td>
      </tr>
      <tr>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
      </tr>
      <tr>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
      </tr>
      <tr>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
      </tr>
      <tr>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
      </tr>
      <tr>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
        <td width="100" height="100">&nbsp;</td>
      </tr>
    </table>

  2. #2
    Membre Expert
    Profil pro
    Inscrit en
    Mars 2002
    Messages
    1 132
    Détails du profil
    Informations personnelles :
    Âge : 53
    Localisation : France

    Informations forums :
    Inscription : Mars 2002
    Messages : 1 132
    Par défaut
    Je ne suis pas certain de bien avoir compris ton problème...
    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
     
    <table>
      <tr>
        <td colspan="7">&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
    </table>
    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     
    table {
      width:900px;
      border:1px solid #000000;
      text-align:center;
    }
     
    td {
      width:100px;
      height:100px;
    }


  3. #3
    Candidat au Club
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    2
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 2
    Par défaut
    Citation Envoyé par devyan Voir le message
    Je ne suis pas certain de bien avoir compris ton problème...
    Et bien je veux supprimer le tableau (trop de code HTML)

    Dans chaque cellule, je veux mettre une petite photo, centrée

    Je voudrais pouvoir faire ça uniquement en CSS, sans passer par la balise <table>

  4. #4
    Membre averti
    Profil pro
    Inscrit en
    Janvier 2009
    Messages
    36
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2009
    Messages : 36
    Par défaut
    Et si tu fais quelque chose qui ressemblerait à :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    <div class"madiv">
    	<div>&nbsp;</div>
    	<img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" /><img src="fondd.gif" />
    </div>
    Je ne vais pas à la ligne après chaque <img src="fondd.gif" /> je crois que ça ajoute des espaces entre chaque image sinon.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    .madiv {
    	width: 760px;
    	border: 1px solid black;
    	margin: 0;
    	padding: 1px;
    }
    .madiv img, .madiv div {
    	border: 1px solid black;
    	margin: 1px;
    	padding: 0;
    }
    .madiv div {
    	height: 15px;
    }
    ?

    Après, il faut un peu jouer avec les dimensions.

  5. #5
    Membre Expert Avatar de HiRoN
    Homme Profil pro
    Développeur Web
    Inscrit en
    Août 2007
    Messages
    2 035
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Août 2007
    Messages : 2 035
    Par défaut
    Bonjour,

    As-tu été faire un tour ici ?
    Pensez à utiliser les ressources disponibles en Dev. Web :
    (x)HTML : Cours (X)HTML / FAQ (X)HTML
    CSS : Cours CSS / FAQ CSS / Galerie CSS
    Javascript : Cours / FAQ / Sources
    Mon site : Développeur Web Freelance

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

Discussions similaires

  1. où placer mettre mon fichier print.css
    Par ola-oz dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 20/02/2010, 16h55
  2. Mettre mon Tableau au heap(pour le GC)
    Par Yakuzan dans le forum Collection et Stream
    Réponses: 1
    Dernier message: 27/03/2009, 09h16
  3. [MySQL] Alterner la couleur des lignes de mon tableau via un fichier CSS
    Par SONIA.GERET dans le forum PHP & Base de données
    Réponses: 4
    Dernier message: 18/01/2008, 17h11
  4. Réponses: 2
    Dernier message: 29/08/2006, 16h18

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