I am using a python script to display data on a web page. I used df.to_htmlto convert my data frame to HTML. However, by default it sets the border to 0. I tried to override it by creating my own CSS template, but it does not work.
Here is my pandas code:
ricSubscription.to_html(classes='mf')
Is there a parameter that I can pass to set the border to zero when making this call?
source
share