【发布时间】:2021-08-31 04:49:22
【问题描述】:
我需要设置网站 iframe 的 CSS 样式。您如何自定义它,例如隐藏导航菜单?我正在使用样式组件并做出反应。
在此处检查我的代码框 CLICK HERE
const FormContainer = styled.div`
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
overflow: scroll;
& iframe {
& #page-header-container {
display: none !important;
}
}
`;
【问题讨论】:
标签: css reactjs iframe styled-components