-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add word-wrap: anywhere support #912
Conversation
|
Someone is attempting to deploy a commit to the Atomizer Team on Vercel. A member of the Team first needs to authorize it. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
packages/atomizer/src/rules.js
Outdated
@@ -4430,6 +4430,7 @@ module.exports = [ | |||
{ | |||
bw: 'break-word', | |||
n: 'normal', | |||
a: 'anywhere', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To prevent overflow, an otherwise unbreakable string of characters — like a long word or URL — may be broken at any point if there are no otherwise-acceptable break points in the line. No hyphenation character is inserted at the break point. Soft wrap opportunities introduced by the word break are considered when calculating min-content intrinsic sizes.
I confirm that this contribution is made under a BSD license and that I have the authority necessary to make this contribution on behalf of its copyright owner.
Description
Adds support for
word-wrap: anywhere
- https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrapMotivation and Context
Adds support for a supported value of word-wrap
How Has This Been Tested?
Snapshots have been updated.
Types of changes
What types of changes does your code introduce? Put an x in all the boxes that apply:
Checklist
Review the following points, and put an x in all the boxes that apply. If you’re unsure about any of these, don’t hesitate to ask. We’re here to help!