bulma icon indicating copy to clipboard operation
bulma copied to clipboard

break-word property is deprecated in title.sass

Open ptmkenny opened this issue 4 years ago • 3 comments

This is about Bulma.

Overview of the problem

This is about the Bulma CSS framework

I'm using Bulma version [0.9.3]

Description

When I run the W3C Validator on my Bulma site, I get this error:

Line 51, Column 0: CSS: The value “break-word” is deprecated

This is set in elements/title.sass:

.title,
.subtitle
  @extend %block
  word-break: break-word

According to the Mozilla docs on word-break, break-word should be replaced with:

word-break: normal;
overflow-wrap: anywhere;

ptmkenny avatar Jun 27 '21 04:06 ptmkenny

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Apr 18 '22 19:04 stale[bot]

Still an issue.

ptmkenny avatar Apr 19 '22 01:04 ptmkenny

Hey, should I replace the break word with normal?

BamaCharanChhandogi avatar Apr 02 '23 19:04 BamaCharanChhandogi