mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
46 lines
1.0 KiB
HTML
46 lines
1.0 KiB
HTML
<ion-toolbar><ion-title>Item Text</ion-title></ion-toolbar>
|
|
|
|
<ion-content class="outer-content">
|
|
|
|
<ion-list>
|
|
|
|
<ion-item>
|
|
Plain Ol' div with some text
|
|
</ion-item>
|
|
|
|
<ion-item>
|
|
Single line text that should have ellipses when it doesn't all fit in the item
|
|
</ion-item>
|
|
|
|
<ion-item class="item-text-wrap">
|
|
Multiline text that should wrap when it is too long
|
|
to fit on one line in the item. Class on .item
|
|
</ion-item>
|
|
|
|
<ion-item class="item-text-wrap">
|
|
<h1>H1 Title Text</h1>
|
|
<p>Paragraph line 1</p>
|
|
</ion-item>
|
|
|
|
<ion-item class="item-text-wrap">
|
|
<h2>H2 Title Text</h2>
|
|
<p>Paragraph line 1</p>
|
|
</ion-item>
|
|
|
|
<ion-item class="item-text-wrap">
|
|
<h3>H3 Title Text</h3>
|
|
<p>Paragraph line 1</p>
|
|
<p>Paragraph line 2</p>
|
|
</ion-item>
|
|
|
|
<ion-item class="item-text-wrap">
|
|
<h4>H4 Title Text</h4>
|
|
<p>Paragraph line 1</p>
|
|
<p>Paragraph line 2</p>
|
|
<p>Paragraph line 3</p>
|
|
</ion-item>
|
|
|
|
</ion-list>
|
|
|
|
</ion-content>
|