my code is as follow
with col1:
year_month = st.selectbox("one", period_list, index=0)
with col2:
text_input = st.text_input(label='two')
with col3:
btn_input = st.button('Test')
the result also is:
as you can see the button is upper than input how can i fix it
thanks in advance