1234567891011121314151617181920 |
- @inherits LayoutComponentBase
- <AntDesign.Layout Style="@Style" Class="site-layout-background-img">
- <Content Style="padding: 24px;min-height: 280px;">
- @Body
- </Content>
- <Footer Style="text-align: center;height:50px;"> ©2021 Created by 小米知识产权</Footer>
- </AntDesign.Layout>
- <style>
- .site-layout-background-img {
- background-image: url(images/bg1.jpg);
- background-attachment: fixed;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center;
- }
-
- </style>
|