Fix how long URLs appear in Chrome/Chromium #5
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Reporting this issue while developing a newsletter publication with the following CSS properties on the root element:
This is to allow words to break across columns, and renders as expected in both Chrome and Firefox. However, in Chrome, some text sequences in URLs (e.g. long hashes of numbers after trailing slashes) do not break.
This is an issue reported on elsewhere: https://stackoverflow.com/questions/21299403/chrome-long-url-in-table-issue
The solution suggested is to add the class "break" judiciously to HTML elements that need to break, and add the collowing CSS:
This forces the line of the URL to break, but it breaks across columns and then the URLs become unclickable.