Hi Team,
I want to add a border to a specific container in the script.
I’ve attempted utilizing a custom CSS solution from earlier discussions, however that approach borders every container.
I wanted to add a border to just one of the two containers that I have in my script and set a custom height for that container. Basically i want a visible box around the radio buttons.
Please have a look at the code below.
I want to add border to container 1 only.
import streamlit as st
list_of_tables = ['T1', 'T2', 'T3', 'T4', 'T5', 'T6']
with st.container():
st.write("In Container 1")
table_name = st.radio(
"Please Select Table",
list_of_tables)
with st.container():
st.write("In Container 2")
please have a look at the screenshot of the output below
I’m running the code locally
Streamlit version : 1.26.0
Python version : 3.9
I get a ‘NoneType’ object has no attribute ‘markdown’ for the container1.markdown statement after the with statement and the object shows as None in the vscode debugger.
Creating the container manually with:
container1=st.container()
with container1:
container1.markdown(“
”,unsafe_allow_html=True)
gets around this but the the resulting container is one pixel high and the st.write (or even container1.write) statement renders outside the container.
streamlit is 1.28.2. Not sure where to go with this or what is happening.
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.