我有像Shiny这样的布局
shinyUI(fluidPage(
tags$head(tags$script(src="lib.js"))
,tags$link(rel = "stylesheet", type = "text/css", href = "thispage.css")
,titlePanel("Inbound Level Shift Detector")
,mainPanel(
tabsetPanel(type ...
相应的HTML源是
<div class="container-fluid">
<link rel="stylesheet" type="text/css" href="thispage.css"/>
<h2>Inbound Level Shift Detector</h2>
<div class="col-sm-8">
<div class="tabbable tabs-above">
如何在R代码中指定顶级为col-sm-12
而不是col-sm-8
?
由于
答案 0 :(得分:3)
使用mainPanel(...,width = 12)。这应该有用。