html - paragraph ellipses logic , how to display the ellipses at the end of P -
html - paragraph ellipses logic , how to display the ellipses at the end of P -
the ellipsis(...) @ end of lines know should appear if text larger size of paragraph ! there thing wrong code ?/ why ellipses not appear ! class="snippet-code-css lang-css prettyprint-override"> #footer-section-1 p{ outline: reddish solid 1px; width: 110px; height:60px; overflow: hidden; text-overflow: ellipsis; }
class="snippet-code-html lang-html prettyprint-override"><section id="footer-section-1"> <p> text long me , cant handle right in place! give thanks trying </p> </section>
xt in pargraph eliipses (...) shold appe
please see this question right utilize (which indicates require white-space: nowrap;
). however, webkit engines can utilize next in cases:
class="snippet-code-css lang-css prettyprint-override">#footer-section-1 { outline: reddish solid 1px; width: 110px; height:55px; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
class="snippet-code-html lang-html prettyprint-override"><section id="footer-section-1"> text long me , cant handle right in place! give thanks trying </section>
html css
Comments
Post a Comment