Issue
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?
Solution
Firstly you must define the border-style. Therefore you can this code to add your style:
border-style: solid;
border-color: coral;
Answered By - TFA
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.