user14178341
user14178341

Reputation:

HTML, Streamlit: Changing problem of color of page border

The code:

st.markdown('<style>body{border-color: white;}</style>',unsafe_allow_html=True)

The above code does not change the border color of the web page. How can we do this?

Upvotes: 1

Views: 1054

Answers (1)

TFA
TFA

Reputation: 59

Firstly you must define the border-style. Therefore you can this code to add your style:

    border-style: solid;
    border-color: coral;

Upvotes: 1

Related Questions