I cannot seem to get automatic hyphens to work via CSS. I have applied the following CSS:
body {
-moz-hyphens: auto;
-ms-hyphens: auto;
-o-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
Despite adding this CSS, my text is not being hyphenated as expected. I have verified that the correct CSS is downloaded and now I am trying to determine which hyphenation property is taking effect for a specific element. However, upon inspecting with F12, I do not see any hyphen-related CSS.
What could I be overlooking?