From 65cd2b1d604199f9b78702fb236a373d8cbdee8b Mon Sep 17 00:00:00 2001 From: mcmimik Date: Mon, 15 Jan 2024 16:42:38 +0300 Subject: [PATCH] Fixed what the property overflow-wrap applies to According to the current standard, the property is not applied to inline elements, but to text. See: https://www.w3.org/TR/css-text-3/#overflow-wrap-property --- css/properties.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/properties.json b/css/properties.json index 6648662f..54ee30f1 100644 --- a/css/properties.json +++ b/css/properties.json @@ -7562,7 +7562,7 @@ "CSS Text" ], "initial": "normal", - "appliesto": "nonReplacedInlineElements", + "appliesto": "textElements", "computed": "asSpecified", "order": "uniqueOrder", "status": "standard",