mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
58 lines
1.1 KiB
HTML
58 lines
1.1 KiB
HTML
<ion-toolbar><ion-title>Item Text</ion-title></ion-toolbar>
|
|
|
|
<ion-content class="outer-content">
|
|
|
|
<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 no-lines>
|
|
Single line item with no lines
|
|
</ion-item>
|
|
|
|
<ion-item text-wrap>
|
|
Multiline text that should wrap when it is too long
|
|
to fit on one line in the item. Attribute on .item
|
|
</ion-item>
|
|
|
|
<ion-item text-wrap>
|
|
<h1>H1 Title Text</h1>
|
|
<p>Paragraph line 1</p>
|
|
</ion-item>
|
|
|
|
<ion-item text-wrap>
|
|
<h2>H2 Title Text</h2>
|
|
<p>Paragraph line 1</p>
|
|
</ion-item>
|
|
|
|
<ion-item text-wrap>
|
|
<h3>H3 Title Text</h3>
|
|
<p>Paragraph line 1</p>
|
|
<p>Paragraph line 2</p>
|
|
</ion-item>
|
|
|
|
<ion-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-item>
|
|
<ion-item-content>
|
|
Column 1
|
|
</ion-item-content>
|
|
<ion-item-content>
|
|
Column 2
|
|
</ion-item-content>
|
|
<ion-item-content>
|
|
Column 3
|
|
</ion-item-content>
|
|
</ion-item>
|
|
|
|
</ion-content>
|