import streamlit as st | |
# Tạo một trang Streamlit | |
st.title("FIO Advisor") | |
# CSS để làm cho iframe co giãn theo kích thước trang | |
iframe_code = ''' | |
<div style="position: relative; width: 100%; height: 900; padding-top: 56.25%;"> | |
<iframe src="https://lookerstudio.google.com/embed/reporting/b51a247a-a7e1-4da0-aed9-f938d3a6e6f7/page/eQp4D" style="position: absolute; width: 100%; height: 100%; left: 0; top: 0; border: 0;" allowfullscreen sandbox="allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-popups allow-popups-to-escape-sandbox"></iframe> | |
</div> | |
''' | |
# Sử dụng st.components.v1 để nhúng iframe với CSS đã điều chỉnh | |
st.components.v1.html(iframe_code, height=900) | |