i have HTML table that is produced from styler object in python pandas and one image i need to have them both in the same size this is how i create HTML:
with open('example.html','w') as exp:
example_html=exp.write(" <div style='float:left'>")
example_html=exp.write(plunge_results[_j].report_new.render()) #render styler object to HTML table
example_html=exp.write("</div>")
example_html=exp.write(" <div style='float:left'>")
example_html=exp.write(img_tag)
example_html=exp.write("</div>")