Reputation: 5335
I'm used my university project for Ionic-3
. I have small issue text is not align to first line ,any one know how to align this correctly ?
look my code and live sample working sample
this is my code
html
<ion-card-title><ion-icon name="color-palette" item-start class="card-itm-icon"></ion-icon>
<p class="card-head-txt-skill" text-wrap >
A paragraph (from the Ancient Greek παράγραφος paragraphos, "to write beside" or "written beside") is a self-contained unit of a discourse in writing dealing with a particular point or idea.
</p>
</ion-card-title>
css
p.card-head-txt-skill {font-weight: bold; font-size: 1.4rem; text-indent: 4rem;
margin-top: -3.5rem;text-align: justify;
text-align-last:left;}
.card-itm-icon {color: #ff9300; text-indent: 0.5rem; top: -0.8rem;
position: relative;}
Upvotes: 0
Views: 236
Reputation: 5335
finally I FIXED MY ISSUE
I removed text-indent: 4rem;
and after added this css
p.card-head-txt-skill {font-weight: bold; font-size: 1.4rem; margin-left: 4rem;
margin-top: -3.5rem;
}
Upvotes: 1