p {
width: 50px;
border: 1px dashed #555;
-ms-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
.uppercase {
text-transform: uppercase;
}
<p lang="en">A conversation about sustainable carsharing.</p>
<p lang="en" class="uppercase">A conversation about sustainable carsharing.</p>
If I use CSS: text-transform: uppercase to convert everything to capital letters, the automatic hyphenation hyphens: auto no longer works – in Chrome (121.0..) on MacOs (14.2)
Any ideas to solve this problem? Thank you!

Instead of
{hyphen:auto}property, you can use:or
I think it should work.