我想在Box()中包含三行文本内容: “屏蔽”,“大”,“小”
我不知道如何在Box()的内容中添加行。
fluidRow(box("line1", status = "primary", title = "Oral", width = 6 ,
height = 120, background = "red"))
我想要Box()的内容中包含三行: 1.“第1行”, 2.“第2行”, 3.“第3行”
有人可以帮忙吗?
非常感谢。
答案 0 :(得分:0)
您可以在HTML函数中包含任何原始html
box(HTML("line1: <br> line2: <br> line3: "), status = "primary", title = "Oral", width = 6 ,
height = 120, background = "red")