Reputation:
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
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