I have two buttons in my U.i file
div(style="display:inline-block",submitButton("Analysis")),
div(style="display:inline-block",downloadButton('downloadData', 'Download Data'))
Which gives the following output in the app
However I am trying to align these buttons so that the download data is on the right in the grey box and the analysis button is on the left in the grey box, instead of how it looks now. How do i go about this? The intended use is to become more advanced and create another button which is in the middle of the grey box. Im assuming you do something similar to
style="display:center-align"
style="display:right-align"
style="display:left-align"
but I'm not sure how to go about this process.