Files
ionic-framework/src/components/item/test/text/main.html
2016-06-17 11:43:30 -05:00

68 lines
1.2 KiB
HTML

<ion-header>
<ion-toolbar>
<ion-title>Item Text</ion-title>
</ion-toolbar>
</ion-header>
<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-label>
Item using inner ion-label
</ion-label>
</ion-item>
<ion-item>
<ion-label>
ion-label
</ion-label>
<div item-content>
[item-content]
</div>
</ion-item>
</ion-content>