import streamlit as st
c1, c2, c3 = st.columns([1,1,1])
with c1:
st.write("C1")
st.markdown('[](https://share.streamlit.io/)')
with c2:
st.write("C2")
st.markdown('[](https://share.streamlit.io/)')
with c3:
st.write("C3")
st.markdown('[](https://share.streamlit.io/)')
I would like to include a link to an image. However, the picture is out of range.
can’t I use width options like st.image here?
Thank you for always.