While working on a client's stylesheet today, I came across the following code:
p {
-webkit-hyphens: auto;
-webkit-hyphenate-character: "\2010";
-webkit-hyphenate-limit-after: 1;
-webkit-hyphenate-limit-before: 3;
-moz-hyphens: manual;
orphans: 3;
widows: 3;
}
Although I am well-versed in using -webkit
and -moz
, some parts of this code left me puzzled and unable to figure out. Instead of turning to Google for answers, I thought it would be beneficial to seek insights from the community here. Appreciate any assistance or guidance. Thank you!