Bonjour, je veux center deux images alignées sous R shiny en utilisant ce 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
 
tabPanel("",icon=icon("home"),
 
        tags$div(
          HTML("<h1> <center> <strong> Outil de provisionnement en assurance non-vie </strong></center></h1>")
        ),
        # 
        # tags$div(
        #   tags$h1("Par:" ,
        #           style = "font-family: 'Georgia', Times, 'Times New Roman', serif;
        #                         font-weight: 500; line-height: 1.1; 
        #                         color: #ad1d28 ;")),
 
        br(),
        fluidRow(
          column(width = 6, 
                 tags$img(src='LOGO-600.png',height=100,width=400,align="center")),
          column(width = 6,
                 tags$img(src='globacss.png',height=100,width=300,align="middle")))
)
mais le résultats n'est pas que je cherche.

Nom : imggg.PNG
Affichages : 597
Taille : 77,6 Ko

J'ai enlevé les column et j'ai même changé middle, center par lift right mai toujours le même problème.

MERCI d'avance.