I would like to have thin colored borders around some of my containers, in particular, row separators similar to horizontal rules
. How can I accomplish this?
I would like to have thin colored borders around some of my containers, in particular, row separators similar to horizontal rules
Hi @fredzannarbor ,
A simple solution is st.write('***')
. Alternatively I think the st.markdown
hack with <hr>
HTML inside should work too.
st.markdown("""---""")
And if we’re playing code golf, you can even omit the st.markdown
call!
"---"