Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

No need to have underline in part of the txt

<div class="action btn-save">{{'SaveTitle' | translate}}({{row.box.length}})
</div>

.btn-save {
text-decoration: underline;
}

I have above code.. The result of it is: Save(3) with underline for whole but I need underline just for save and I dont want to have underline for (3). would you please help?

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Use a span (or other HTML tag) to apply styles more specifically.

<div class="action btn-save">
  <span class="my-underline">{{'SaveTitle' | translate}}</span>
  <span>({{row.box.length}})</span>
</div>

.my-underline {
  text-decoration: underline;
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading