Replies: 1 comment
-
@ngyg12 Thank you for reporting. We will give triage later. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
No response
Describe the solution you'd like
I have build a blazor hybrid project for winform with BootStrapBlazor package.But it seems not work well. The split Component can not fill the parent container in height side.
razor code:
<Layout ShowFooter="true" IsPage="true" IsFixedHeader="true" IsFixedFooter="true"> <Header> <div class="base-lay-header w-100">Header</div> </Header> <Main> <div class="d-flex w-100 h-100" style="background-color:aquamarine"> <Split class="d-flex w-100 h-100"> <FirstPaneTemplate> <div class="d-flex h-100">我是左侧面板</div> </FirstPaneTemplate> <SecondPaneTemplate> <div class="d-flex h-100">我是右侧面板</div> </SecondPaneTemplate> </Split> </div> </Main> <Footer> <div class="base-lay-footer w-100">Footer</div> </Footer> </Layout>
css:
.base-lay-header {
height: 30px;
background-color: #008000;
}
.base-lay-main {
flex: 1;
background-color: #E9967A;
}
.base-lay-footer {
height: 30px;
background-color: #F0E68C;
}
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions