🍣

【Streamlit】HTMLを中央揃えにする

2022/03/21に公開

Streamlitのlayoutがwideの際にHTMLを中央揃えにする。

import streamlit as st
st.set_page_config(layout="wide")

st.sidebar.write("hello")
html = "<h1>world</h1>"
st.components.v1.html(html)
st.components.v1.html("<center>" + html + "</center>")

Discussion