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

ODS et reporting Discussion :

Supprimer bordures de tableau ODS


Sujet :

ODS et reporting

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé
    Inscrit en
    Novembre 2003
    Messages
    554
    Détails du profil
    Informations forums :
    Inscription : Novembre 2003
    Messages : 554
    Par défaut Supprimer bordures de tableau ODS
    Bonjour,
    J'ai le programme suivant qui m'affiche un tableau dans un fichier RTF
    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
     
    data TEMP; input X Y Z @@; cards;
    1 2 3 4 5 6 7 8 9 8 7 6 5 4 3 2 1 .
    ;
    ods listing close;
    ods rtf file="Essai.rtf";
    data _NULL_;
       set TEMP end=FINTABLE;
       IF _N_ = 1 THEN DO;
          declare odsout Tableau () ;
          Tableau.TABLE_START("Listing");
          Tableau.ROW_START(TYPE:"HEADING");
          Tableau.FORMAT_CELL(TEXT:"X"); Tableau.FORMAT_CELL(TEXT:"Y"); Tableau.FORMAT_CELL(TEXT:"Z");
          Tableau.ROW_END() ;
       end;
       Tableau.ROW_START();
       Tableau.FORMAT_CELL(TEXT:put(X,2.)); Tableau.FORMAT_CELL(TEXT:put(Y,2.)); Tableau.FORMAT_CELL(TEXT:put(Z,2.));
       Tableau.ROW_END() ;
       IF FINTABLE THEN Tableau.LAYOUT_END() ;
       run;
    ods rtf close;
    ods listing;
    Ce programme produit un tableau quadrillé.
    Est-il possible de supprimer les bordures du quadrillage, ou de les colorer d'une façon autre que noire.
    Merci d'avance
    Enicnath

  2. #2
    Rédacteur

    Homme Profil pro
    SAS ALLIANCE SILVER. Consultant et formateur SAS et Cognos.
    Inscrit en
    Avril 2009
    Messages
    2 497
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : SAS ALLIANCE SILVER. Consultant et formateur SAS et Cognos.
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2009
    Messages : 2 497
    Par défaut
    ODS RTF utilises le style RTF par conséquent, tu devrais regarder dedans et modifier les valeurs affectées au quadrillage.

  3. #3
    Membre Expert
    Homme Profil pro
    Biostatisticien
    Inscrit en
    Juin 2009
    Messages
    1 206
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Irlande

    Informations professionnelles :
    Activité : Biostatisticien
    Secteur : Industrie Pharmaceutique

    Informations forums :
    Inscription : Juin 2009
    Messages : 1 206
    Par défaut
    Je pense que l'ods rtf gère la sortie vers un fichier de type RTF. Par contre il y la possibilité d'utiliser un style avec l'option style, que tu peux avoir défini toi même auparavant par la proc template.

    Manoutz

  4. #4
    Membre éclairé
    Inscrit en
    Novembre 2003
    Messages
    554
    Détails du profil
    Informations forums :
    Inscription : Novembre 2003
    Messages : 554
    Par défaut
    Merci, mais je voudrais savoir s'il est possible de modifier ce paramétrage dans l'étape data, sans avoir à exécuter une PROC TEMPLATE (fort compliquée pour moi), de la même manière qu'on modifie ce paramétrage lorsqu'on utilise l'instruction FORMAT_CELL.

  5. #5
    Membre Expert
    Homme Profil pro
    Biostatisticien
    Inscrit en
    Juin 2009
    Messages
    1 206
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Irlande

    Informations professionnelles :
    Activité : Biostatisticien
    Secteur : Industrie Pharmaceutique

    Informations forums :
    Inscription : Juin 2009
    Messages : 1 206
    Par défaut
    Cette méthode semble plus souple que la report via proc template. Mais plus complexe. Il y a surement un moyen via la template.

    Es tu sur de ne pas pouvoir y arriver via la proc template? voici une proc template un peu avancée (SAS V9.2)

    Il y a surement moyen de bricoler, par exemple en jouant avec l'option frame=


    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
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
     
    proc template;                                                                
       define style Styles.matemplate;                                               
          parent = styles.default;                                                
          style fonts /                                                           
             'docFont' = ("SAS Monospace",7pt)                      
             'headingFont' = ("SAS Monospace",7pt)           
             'headingEmphasisFont' = ("SAS Monospace",7pt,bold)                                                              
             'FixedFont' = ("SAS Monospace",7pt)                    
             'FixedHeadingFont' = ("SAS Monospace",7pt)      
             'FixedStrongFont' = ("SAS Monospace",7pt,bold)         
             'FixedEmphasisFont' = ("SAS Monospace",7pt,bold italic)
     
             'EmphasisFont' = ("SAS Monospace",7pt,italic)          
             'StrongFont' = ("SAS Monospace",7pt,bold)       
             'TitleFont' = ("SAS Monospace",7pt,bold)        
             'TitleFont2' = ("SAS Monospace",7pt)       
             'SASTitleFont' = ("SAS Monospace",7pt);    
          style GraphFonts /                                                      
             'GraphTitleFont' = ("SAS Monospace",7pt)             
             'GraphFootnoteFont' = ("SAS Monospace",7pt)          
             'GraphLabelFont' = ("SAS Monospace",7pt)             
             'GraphUnicodeFont' = ("SAS Monospace",7pt)                  
             'GraphValueFont' = ("SAS Monospace",7pt)              
             'GraphDataFont' = ("SAS Monospace",7pt)               
             'GraphAnnoFont' = ("SAS Monospace",7pt);             
          style colors /                                                          
             'fg' = cx000000                                                      
             'fg2' = cx000000                                                     
             'fgA1' = cx000000                                                    
             'bgA1' = cxFFFFFF                                                    
             'bg2' = cxFFFFFF                                                     
             'fg3' = cx000000                                                     
             'bg3' = cxFFFFFF                                                     
             'fg4' = cx000000                                                     
             'bg4' = cxFFFFFF                                                     
             'bg5' = cxFFFFFF                                                     
             'link1' = cx004488                                                   
             'link2' = cx0066AA                                                   
             'titlefg' = _undef_                                                  
             'contentfg' = cx000000                                               
             'contentbg' = cxFFFFFF                                               
             'docbg' = cxFFFFFF;                                                  
          style GraphColors /                                                     
             'gablock' = cxE0E0E0                                                 
             'gblock' = cxF2F2F2                                                  
             'gcclipping' = cx000000                                              
             'gclipping' = cxD2D2D2                                               
             'gcstars' = cx000000                                                 
             'gstars' = cxD2D2D2                                                  
             'gcruntest' = cxA3A3A3                                               
             'gruntest' = cxDDDDDD                                                
             'gccontrollim' = cxC2C2C2                                            
             'gcontrollim' = cxF0F0F0                                             
             'gcerror' = cx000000                                                 
             'gerror' = cxA0A0A0                                                  
             'gcpredictlim' = cx000000                                            
             'gpredictlim' = cxC8C8C8                                             
             'gcpredict' = cx000000                                               
             'gpredict' = cx000000                                                
             'gcconfidence2' = cx000000                                           
             'gcconfidence' = cx000000                                            
             'gconfidence2' = cxA8A8A8                                            
             'gconfidence' = cxC8C8C8                                             
             'gcfit2' = cx000000                                                  
             'gcfit' = cx000000                                                   
             'gfit2' = cx000000                                                   
             'gfit' = cx000000                                                    
             'gcoutlier' = cx000000                                               
             'goutlier' = cxA0A0A0                                                
             'gcdata' = cx000000                                                  
             'gdata' = cxD2D2D2                                                   
             'ginsetheader' = colors('docbg')                                     
             'ginset' = cxFFFFFF                                                  
             'greferencelines' = cx808080                                         
             'gheader' = colors('docbg')                                          
             'gramp3cend' = cx5F5F5F                                              
             'gramp3cneutral' = cxA7A7A7                                          
             'gramp3cstart' = cxF0F0F0                                            
             'gramp2cend' = cxF0F0F0                                              
             'gramp2cstart' = cx5F5F5F                                            
             'gconramp3cend' = cx000000                                           
             'gconramp3cneutral' = cx777777                                       
             'gconramp3cstart' = cxC4C4C4                                         
             'gconramp2cend' = cx5F5F5F                                           
             'gconramp2cstart' = cxF0F0F0                                         
             'gtext' = cx000000                                                   
             'glabel' = cx000000                                                  
             'gborderlines' = cx000000                                            
             'goutlines' = cx000000                                               
             'ggrid' = cxECECEC                                                   
             'gaxis' = cx000000                                                   
             'gshadow' = cx000000                                                 
             'glegend' = cxFFFFFF                                                 
             'gfloor' = cxCCCCCC                                                  
             'gwalls' = cxFFFFFF                                                  
             'gcdata12' = cx000000                                                
             'gcdata11' = cx000000                                                
             'gcdata10' = cx000000                                                
             'gcdata9' = cx000000                                                 
             'gcdata8' = cx000000                                                 
             'gcdata7' = cx000000                                                 
             'gcdata6' = cx000000                                                 
             'gcdata5' = cx000000                                                 
             'gcdata4' = cx000000                                                 
             'gcdata3' = cx000000                                                 
             'gcdata2' = cx000000                                                 
             'gcdata1' = cx000000                                                 
             'gdata11' = CXe1e1e1                                                 
             'gdata5' = CXcfcfcf                                                  
             'gdata1' = CXbfbfbf                                                  
             'gdata7' = CXababab                                                  
             'gdata8' = CX969696                                                  
             'gdata2' = CX828282                                                  
             'gdata9' = CX6e6e6e                                                  
             'gdata3' = CX595959                                                  
             'gdata10' = CX454545                                                 
             'gdata4' = CX303030                                                  
             'gdata6' = CX1c1c1c                                                  
             'gdata12' = CX080808;                                                
          style Container;                                                        
          style Index from Container /                                            
             color = colors('fg');                                                
          style Contents from Document /                                          
             marginleft = 8                                                       
             marginright = 8                                                      
             backgroundcolor = colors('bg2')                                      
             pagebreakhtml = html('break')                                        
             tagattr = " onload=""expandAll()"""                                  
             liststyletype = "decimal";                                           
          style Pages from Document /                                             
             marginleft = 8                                                       
             marginright = 8                                                      
             backgroundcolor = colors('bg2')                                      
             pagebreakhtml = html('break')                                        
             tagattr = " onload=""expandAll()"""                                  
             liststyletype = "decimal";                                           
          style Date from Container /                                             
             color = colors('fg3')                                                
             width = 100%;                                                        
          style BodyDate from Date;                                               
          style IndexItem from Container /                                        
             liststyletype = NONE                                                 
             listentryanchor = on                                                 
             prehtml = html('fake bullet')                                        
             font = Fonts('docFont');                                             
          style ContentFolder from IndexItem /                                    
             listentryanchor = off                                                
             prehtml = html('prehtml flyover bullet')                             
             posthtml = html('posthtml flyover')                                  
             font = Fonts('docFont');                                             
          style IndexProcName from Index /                                        
             pretext = text('prefix1')                                            
             posttext = text('suffix1')                                           
             prehtml = html('prehtml flyover')                                    
             posthtml = html('posthtml flyover')                                  
             liststyletype = "decimal"                                            
             listentryanchor = off                                                
             font = Fonts('FixedEmphasisFont');                                   
          style IndexTitle from Index /                                           
             prehtml = html('expandAll')                                          
             posthtml = html('posthtml flyover line')                             
             font = Fonts('FixedStrongFont');                                     
          style SysTitleAndFooterContainer from Container /                       
             borderwidth = 0                                                      
             borderspacing = 0                                                    
             padding = 1                                                          
             width = 100%                                                         
             frame = VOID                                                         
             rules = NONE                                                         
             font = Fonts('TitleFont2')                                           
             prehtml = "<!--BEGINTITLE-->"                                        
             posthtml = "<!--ENDTITLE-->";                                        
          style TitleAndNoteContainer from Container /                            
             borderwidth = 0                                                      
             borderspacing = 1                                                    
             padding = 1                                                          
             width = 100%                                                         
             frame = VOID                                                         
             rules = NONE                                                         
             prehtml = "<!--BEGINTITLE1-->"                                       
             posthtml = "<!--ENDTITLE1-->";                                       
          style TitlesAndFooters from Container /                                 
             color = colors('fg')                                                 
             font = Fonts('TitleFont2');                                          
          style BylineContainer from Container /                                  
             borderwidth = 0                                                      
             borderspacing = 1                                                    
             padding = 1                                                          
             width = 100%                                                         
             frame = VOID                                                         
             rules = NONE;                                                        
          style SystemTitle from TitlesAndFooters /                               
             font = Fonts('TitleFont');                                           
          style SystemFooter from TitlesAndFooters /                              
             font = Fonts('TitleFont');                                           
          style Byline from TitlesAndFooters /                                    
             color = colors('fg2')                                                
             font = fonts('TitleFont');                                           
          style Parskip from TitlesAndFooters /                                   
             font = fonts('headingFont')                                          
             padding = 0                                                          
             borderspacing = 0;                                                   
          style Continued from TitlesAndFooters                                   
             "Controls continued flag" /                                          
             font = fonts('headingFont')                                          
             padding = 0                                                          
             borderspacing = 0                                                    
             pretext = text('continued')                                          
             width = 100%                                                         
             textalign = left;                                                    
          style ProcTitle from TitlesAndFooters /                                 
             font = fonts('TitleFont2');                                          
          style Output from Container /                                           
             bordercolor = colors('fgA1')                                         
             borderwidth = 1                                                      
             borderspacing = 0                                                    
             padding = 7                                                          
             frame = HSIDES                                                       
             rules = GROUPS                                                       
             backgroundcolor = colors('bgA1')                                     
             bordercollapse = separate;                                           
          style Table from Output /                                               
             prehtml = "<!--BEGINTABLE-->"                                        
             posthtml = "<!--ENDTABLE-->";                                        
          style Batch from Output                                                 
             "Batch (capture) Output style." /                                    
             color = colors('fg')                                                 
             font = fonts('FixedFont');                                           
          style Graph from Output;                                                
          style Note from Container /                                             
             prehtml = "<!--BEGINNOTE-->"                                         
             posthtml = "<!--ENDNOTE-->";                                         
          style NoteBanner from Note /                                            
             pretext = text('Note Banner')                                        
             font = fonts('StrongFont');                                          
          style NoteContent from Note                                             
             "Controls the contents for NOTE:s." /                                
             textalign = left;                                                    
          style NoteContentFixed from NoteContent                                 
             "Controls the contents for NOTE:s. Fixed font." /                    
             font = fonts('FixedFont');                                           
          style WarnBanner from Note                                              
             "Controls the banner for WARNING:s." /                               
             pretext = text('Warn Banner');                                       
          style WarnContent from Note                                             
             "Controls the contents of WARNING:s." /                              
             textalign = left;                                                    
          style WarnContentFixed from WarnContent                                 
             "Controls the contents for WARNING:s. Fixed font." /                 
             font = fonts('FixedFont');                                           
          style ErrorBanner from Note                                             
             "Controls the banner for ERROR:s." /                                 
             pretext = text('Error Banner');                                      
          style ErrorContent from Note                                            
             "Controls the contents of ERROR:s." /                                
             textalign = left;                                                    
          style ErrorContentFixed from ErrorContent                               
             "Controls the contents for ERROR:s. Fixed font." /                   
             font = fonts('FixedFont');                                           
          style FatalBanner from Note                                             
             "Controls the banner for FATAL:s." /                                 
             pretext = text('Fatal Banner');                                      
          style FatalContent from Note                                            
             "Controls the contents of FATAL:s." /                                
             textalign = left;                                                    
          style FatalContentFixed from FatalContent                               
             "Controls the contents for FATAL:s. Fixed font." /                   
             font = fonts('FixedFont');                                           
          style Data from Cell /                                                  
             backgroundcolor = colors('bg3')                                      
             color = colors('fg3')                                                
             font = Fonts('DocFont');                                             
          style DataEmphasis from Data /                                          
             font = fonts('EmphasisFont');                                        
          style DataEmphasisFixed from DataEmphasis /                             
             font = fonts('FixedEmphasisFont');                                   
          style DataStrong from Data /                                            
             font = fonts('StrongFont');                                          
          style HeadersAndFooters from Cell /                                     
             backgroundcolor = colors('bg2')                                      
             color = colors('fg2')                                                
             font = fonts('HeadingFont');                                         
          style Caption from HeadersAndFooters;                                   
          style HeaderEmphasis from Header /                                      
             font = fonts('EmphasisFont');                                        
          style HeaderStrong from Header /                                        
             font = fonts('StrongFont');                                          
          style GraphData1 from GraphData1 /                                      
             markersymbol = "circle";                                             
          style GraphData2 from GraphData2 /                                      
             markersymbol = "plus";                                               
          style GraphData3 from GraphData3 /                                      
             markersymbol = "X";                                                  
          style GraphData4 from GraphData4 /                                      
             markersymbol = "triangle";                                           
          style GraphData5 from GraphData5 /                                      
             markersymbol = "tilde";                                              
          style GraphData6 from GraphData6 /                                      
             markersymbol = "ibeam";                                              
          style GraphData7 from GraphData7 /                                      
             markersymbol = "square";                                             
          style GraphData8 from GraphData8 /                                      
             markersymbol = "asterisk";                                           
          style GraphData9 from GraphData9 /                                      
             markersymbol = "diamond";                                            
          style GraphData10 from GraphData10 /                                    
             markersymbol = "union";                                              
          style GraphData11 from GraphData11 /                                    
             markersymbol = "hash";                                               
          style GraphData12 from GraphData12 /                                    
             markersymbol = "tack";                                               
          style GraphData13 from GraphComponent /                                 
             markersymbol = "homedown";                                           
          style GraphData14 from GraphComponent /                                 
             markersymbol = "greaterthan";                                        
          style GraphData15 from GraphComponent /                                 
             markersymbol = "arrow";                                              
          style GraphHistogram from GraphComponent /                              
             displayopts = "fill outline";                                        
          style GraphEllipse from GraphComponent /                                
             displayopts = "outline";                                             
          style GraphBand from GraphComponent /                                   
             displayopts = "fill";                                                
          style GraphBox from GraphComponent /                                    
             displayopts = "fill caps median mean outliers"                       
             connect = "mean"                                                     
             capstyle = "serif";                                                  
          style GraphContour from GraphContour /                                  
             displayopts = "LabeledLine";                                         
       end;                                                                       
    run;
    Bon courage,

    Manoutz

    PS: ceci étant si tu trouves la solution via l'étape data, je suis aussi preneur!!

  6. #6
    Rédacteur

    Homme Profil pro
    SAS ALLIANCE SILVER. Consultant et formateur SAS et Cognos.
    Inscrit en
    Avril 2009
    Messages
    2 497
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 52
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : SAS ALLIANCE SILVER. Consultant et formateur SAS et Cognos.
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2009
    Messages : 2 497
    Par défaut
    Avec le RTF on ne peut supprimer le quadrillage complètement à moins de passer l'instruction de SAS à word ("supprimer les brodures"). Mais ce n'est pas possible.

    Il faut que tu joues avec cela. Je pense que BorderColor est une piste intéressante.

    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
    DATA TEMP; input X Y Z @@; cards;
    1 2 3 4 5 6 7 8 9 8 7 6 5 4 3 2 1 .
    ;
    ods _all_ close;
    ods rtf file="D:\migrate\Essai.rtf";
    DATA _NULL_;
    SET TEMP end=FINTABLE;
    IF _N_ = 1 THEN DO;
    declare odsout Tableau () ;
    Tableau.TABLE_START("Listing");
    	Tableau.ROW_START(TYPE:"HEADING");
    	Tableau.FORMAT_CELL(TEXT:"X"); 
    	Tableau.FORMAT_CELL(TEXT:"Y"); Tableau.FORMAT_CELL(TEXT:"Z");
    Tableau.ROW_END() ;
    end;
    Tableau.ROW_START();
    	Tableau.FORMAT_CELL(TEXT:put(X,2.),overrides: "background=lightgray BorderWidth=0 BorderColor=lightgray"); 
    	Tableau.FORMAT_CELL(TEXT:put(Y,2.),overrides: "background=lightgray BorderWidth=0 BorderColor=lightgray"); 
    	Tableau.FORMAT_CELL(TEXT:put(Z,2.),overrides: "background=lightgray BorderWidth=0 BorderColor=lightgray");
    Tableau.ROW_END() ;
    IF FINTABLE THEN Tableau.LAYOUT_END() ;
    run;
    ods rtf close;
    ods listing;
    Autrement :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    proc print data=sashelp.class       
    style(table)={rules=none cellspacing=0
     frame=box borderwidth=10
    bordercolor=red};  title 'SASHELP.CLASS';  
    run;
    Stéphane.

Discussions similaires

  1. bordures de tableau
    Par fourgeaud dans le forum Balisage (X)HTML et validation W3C
    Réponses: 2
    Dernier message: 14/04/2006, 16h18
  2. Bordure de tableau fine
    Par Thom@s dans le forum Balisage (X)HTML et validation W3C
    Réponses: 5
    Dernier message: 05/04/2006, 11h56
  3. [HTML/CSS] problème bordure de tableau
    Par LE NEINDRE dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 18/08/2005, 11h42
  4. [HTML]bordure de tableau
    Par totoranky dans le forum Balisage (X)HTML et validation W3C
    Réponses: 2
    Dernier message: 21/05/2005, 15h36
  5. Bordure de tableau
    Par pmboutteau dans le forum Balisage (X)HTML et validation W3C
    Réponses: 6
    Dernier message: 18/03/2005, 08h51

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