I use google browser,and press F12 to open devTools,in Elements,use Arrow to locate target elements,then analyzing web page structure, use css selector to locate target elements.
I think you may be konw more about css selector, so you can write your own css selector to locate elemetns instead of relying on tools.
Does anyone know how to center the delta value and the little arrow SVG in the st.metric?
It seems like the two are separated divs. I have not been able to center both such that the two elements respect each other. Depending on the amount of digits in the delta label, the respective space can be adjusted by " left: 30% "
I realise this thread is a little bit old but was hoping to get some help.
I’m trying to center align some metrics, but after using the code provided by @ji_haoran I can’t get it work.
Just to make sure I am doing this correctly:
Do I simply have to include that st.markdown code snippet and my st.metrics should appear center aligned?
Or do I need to do something else to specifically indicate that I want that css to apply to those elements?
When including CSS in markdown, you need to make sure the CSS string includes the <style>...</style> tags and that you set the unsafe_allow_html=True optional keyword argument for st.markdown. Other than that, it can be anywhere on you page (I usually put my CSS hacks at the end to avoid the extra blank line they create.)
CSS hacks always have a caveat of breaking with version changes, so just be aware. Here’s an alternate solution I posted a while back if you want to try that CSS, too. (It should apply to all st.metrics on the page as written.)