I have the below code to display the widgets inline(in same row) in shiny
div(style="display:inline-block; width: 150px;height: 75px;",selectInput("ddllgra", "Function:",c('mean','median','sd','count','min','max'), selected='mean')),
div(style="display:inline-block; width: 150px;height: 75px;",textInput(inputId="xlimitsmax", label="x-max", value = 0.5))
It is coming out in UI, but not in the same line order. one in coming in the upper side and other is coming on the lower side one the same line.
Is there a way to correct this misalignment?
See Question&Answers more detail:os