From b3c0363b67dbf9f1675d52661d8990218c938280 Mon Sep 17 00:00:00 2001 From: Garfield Lee Date: Tue, 30 Apr 2019 17:19:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(index.wxss):=20=E4=BF=AE=E5=A4=8D=20CSS=20P?= =?UTF-8?q?arse=20Error=20[,]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit W3C CSS Validator results for TextArea (CSS level 2.1) Sorry! We found the following errors (2) URI : TextArea 2 .wxParser-div, .wxParser-p Parse Error [,] 4 .wxParser-div, .wxParser-p Property word-break doesn't exist in CSS level 2.1 but exists in : break-all break-all Valid CSS information ```css .wxParser-div, .wxParser-p { overflow : auto; max-width : 100%; } ``` --- wxParser/index.wxss | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wxParser/index.wxss b/wxParser/index.wxss index 65a361d..01b9d7f 100755 --- a/wxParser/index.wxss +++ b/wxParser/index.wxss @@ -3,8 +3,7 @@ */ .wxParser-div, -.wxParser-p, -{ +.wxParser-p { word-break: break-all; overflow: auto; max-width: 100%; @@ -270,4 +269,4 @@ font-size: 30rpx; line-height: 40rpx; overflow-x: auto; -} \ No newline at end of file +}