我有一个图像,无论页面大小如何,我都希望将其居中在页面底部。但是,使用下面的代码会将图像固定在页面左侧而不是中心。有什么方法可以将其居中在底部吗?
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
ui <- dashboardPage(
header = dashboardHeader(),
sidebar = dashboardSidebar(),
body = dashboardBody(
fluidRow(
column(
width = 12,
img(
src ='testfig.png',
style = 'position: fixed; bottom: 0; width: 45vh; left: auto; right: auto;'
)
)
)
)
)
server <- function(input, output, session) {
}
shiny::shinyApp(ui, server)
字符串
1条答案
按热度按时间ef1yzkbh1#
一种方法是使用自定义CSS:
字符串