I am working on a code where i want to decrease the height of my text_area input box. i have tried to use the height parameter but its not reducing the height.
Here is my code:
st.markdown(“”"
with col2:
col21, col22 = st.columns(2)
with col21:
Product_Name = st.text_area(“Provide the product name”, height=10)
with col22:
Campaign_Name = st.text_area(“Provide the name of campaign”, height=10)
The st.text_area frontend component seems to have a minimum height of 95px, which is why you can’t set it to 10px. Also, the CSS selector you’ve used needs to be tweaked.
Here’s a working example of how to use the CSS hack to decrease the height:
import streamlit as st
col1, col2 = st.columns([1, 3])
st.markdown(
"""
<style>
div[data-baseweb="base-input"] > textarea {
min-height: 1px;
padding: 0;
}
</style>
""", unsafe_allow_html=True
)
height = st.slider("Set the height of the text area", 1, 1000, 10)
with col1:
st.header("Instructions")
with col2:
col21, col22 = st.columns(2)
with col21:
Product_Name = st.text_area("Provide the product name", height=height)
with col22:
Campaign_Name = st.text_area("Provide the name of campaign", height=height)
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.