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)

posted @ 2025-02-25 09:45  咱来都来了  阅读(107)  评论(0)    收藏  举报