bokeh layout vertical alignment with buttons
问题 I am looking for a workaround to an issue in Bokeh. When you put a button and a text input in a row- they will be un-alighned. This effect happens because the text input has a label and is described here: https://github.com/bokeh/bokeh/issues/4817 screenshot of messed up alignment Example code: # hello.py from bokeh.io import curdoc from bokeh.layouts import column, row from bokeh.models.widgets import TextInput, Button, Paragraph # create some widgets button = Button(label="Say HI") input =