1 pièce(s) jointe(s)
Centrer deux images alignées sous R Shiny
Bonjour, je veux center deux images alignées sous R shiny en utilisant ce code :
Code:
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.
Pièce jointe 422075
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.