Shiny에서 CSS
.after .shiny-input-container {
margin-top: -10px;
margin-bottom: -10px;
}
위의
styles.css
를 www에 배치하고 다음을 실행.library(shiny)
ui <- fluidPage(
tags$head(tags$link(rel="stylesheet", type="text/css", href="styles.css")),
h1("before"),
div(
class="before",
checkboxInput(inputId="x1", label="x1"),
checkboxInput(inputId="x2", label="x2"),
checkboxInput(inputId="x3", label="x3"),
checkboxInput(inputId="x4", label="x4"),
checkboxInput(inputId="x5", label="x5")
),
h1("after"),
div(
class="after",
checkboxInput(inputId="x1", label="x1"),
checkboxInput(inputId="x2", label="x2"),
checkboxInput(inputId="x3", label="x3"),
checkboxInput(inputId="x4", label="x4"),
checkboxInput(inputId="x5", label="x5")
),
absolutePanel(
h1("after"),
div(
class="after",
checkboxInput(inputId="x1", label="x1"),
checkboxInput(inputId="x2", label="x2"),
checkboxInput(inputId="x3", label="x3"),
checkboxInput(inputId="x4", label="x4"),
checkboxInput(inputId="x5", label="x5")
),
top=10, right=10, draggable=TRUE)
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
Reference
이 문제에 관하여(Shiny에서 CSS), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yono2844/items/1ff11b2c6bf78c39c7e2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)