mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
22 lines
322 B
HTML
22 lines
322 B
HTML
|
|
<!-- <ion-aside side="left" [content]="viewport">
|
|
Hello! I'm a side menu in the root.
|
|
</ion-aside> -->
|
|
|
|
<ion-nav [initial]="initial">
|
|
</ion-nav>
|
|
|
|
|
|
<style>
|
|
f {
|
|
display: block;
|
|
width: 50px;
|
|
height: 200px;
|
|
margin: 20px auto;
|
|
background: blue;
|
|
}
|
|
f:last-of-type {
|
|
background: red;
|
|
}
|
|
</style>
|