如何删除 streamlit 中标题前的多余间距?

How to remove extra spacing before the title in streamlit?

我构建了一个基本的 streamlit 应用程序。我想知道是否有办法删除标题上方多余的space。在附图中,您可以看到地址栏和标题之间有明显的差距

您可以通过在视图中注入一些 css 来实现:

import streamlit as st

st.set_page_config(layout="wide")

padding_top = 0

st.markdown(f"""
    <style>
        .reportview-container .main .block-container{{
            padding-top: {padding_top}rem;
        }}
    </style>""",
    unsafe_allow_html=True,
)

st.title("My Next Best Actions")

st.sidebar.text_input("foo")

]