点和单选按钮标签之间的空间

时间:2018-06-05 11:26:17

标签: css r shiny radio-button radiobuttonlist

我有以下代码:

radioButtons("selLang", "Taal:", choices = c("Gronings","Nederlands") , inline=FALSE)

在R Shiny应用程序的用户界面中,但找到了标签" Gronings"和#34; Nederlands"接近实际按钮。它看起来像这样:

enter image description here

是否可以增加标签和点之间的距离,这样就可以了:

enter image description here

1 个答案:

答案 0 :(得分:2)

使用margin-right并设置您想要的内容
以下是如何在css中执行此操作的示例:

input[type="radio"] {
  margin-right: 10px;
}
<form>
  <input type="radio" name="gender" value="male" checked> Male<br>
  <input type="radio" name="gender" value="female"> Female<br>
  <input type="radio" name="gender" value="other"> Other  
</form>