streamlit 去除顶部占用
设置style
div[data-testid="stHeader"] {
visibility: hidden;
height: 0px;
position: fixed;
}
div[data-testid="stToolbar"] {
visibility: hidden;
height: 0px;
position: fixed;
}
div[data-testid="stDecoration"] {
visibility: hidden;
height: 0px;
position: fixed;
}
#MainMenu {
visibility: hidden;
height: 0px;
}
header {
visibility: hidden;
height: 0px;
}
footer {
visibility: hidden;
height: 0%;
}
div[data-testid="stMainBlockContainer"] {
padding: 0rem 1rem 10rem
}
import streamlit as st
HIDE_ST_STYLE="""style""" # 存方style样式
st.markdoen(HIDE_ST_STYLE, unsafe_allow_html=True)