英文:
How to reduce line spacing in bulleted list in Streamlit?
问题
如何减小st.markdown中项目符号之间的行间距?
代码
st.markdown('- 项目1')
st.markdown('- 项目2')
st.markdown('- 项目3')
当前输出(希望减小所示的间距)
英文:
How do I reduce the line spacing between bullet points in st.markdown?
Code
st.markdown('- Item 1')
st.markdown('- Item 2')
st.markdown('- Item 3')
Current Output (would like to reduce the space as indicated)
答案1
得分: 1
import streamlit as st
st.markdown(""将文本放在同一个markdown元素中,您可以得到类似这样的效果,更接近一点(项目4和5):"")
st.markdown("[![markdown空间][1]][1]")
st.markdown("[1]: https://i.stack.imgur.com/PDTWA.png")
st.markdown("```python\nimport streamlit as st\n\nst.markdown("- 项目1")\nst.markdown("- 项目2")\nst.markdown("- 项目3")\n\nst.markdown("- 项目4 \\n- 项目5 ")\n```")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论