Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Wrongfully "Expected RPAREN at line..." Error in my main.css file

New Here ,
Apr 30, 2024 Apr 30, 2024

Hallo,

 

bedauerlicherweise bekomme ich in meinem Dreamweaver CSS File häufig den Error "Expected RPAREN at line..."

Das CSS ist korrekt und validiert, es gibt also keinen Fehler.

 

Hier ein Ausschnitt:
::placeholder{
color:inherit
}
:where([hidden]){
display:none
}
:where([contenteditable]:not([contenteditable=false])){
-webkit-user-select:auto;
-moz-user-select:auto;
user-select:auto;
word-wrap:break-word;
-moz-user-modify:read-write;
-webkit-user-modify:read-write
}

Error: 
Expected RPAREN at line 4, col 8.
Expected RPAREN at line 7, col 8.

Würde mich über Hilfe Freuen.
VG Ben

TOPICS
Code , Error
1.6K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 3 Correct answers

Community Expert , Apr 30, 2024 Apr 30, 2024

Unfortunately DW is very out of date and is in minimal maintenance mode. If your code is validating online, but not in DW you should ignore DW and consider your code to be valid.

Translate
Community Expert , May 01, 2024 May 01, 2024

Use the online Validation Service below.  It's more reliable for checking modern CSS code.

https://jigsaw.w3.org/css-validator/validator

 

 

Translate
Community Expert , May 01, 2024 May 01, 2024

Try removing the deprecated properties in:

 

:where([contenteditable]:not([contenteditable=false])){
-webkit-user-select:auto;
-moz-user-select:auto;
user-select:auto;
word-wrap:break-word;
-moz-user-modify:read-write;
-webkit-user-modify:read-write
}

 

Translate
Community Expert ,
Apr 30, 2024 Apr 30, 2024

Unfortunately DW is very out of date and is in minimal maintenance mode. If your code is validating online, but not in DW you should ignore DW and consider your code to be valid.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 01, 2024 May 01, 2024

Use the online Validation Service below.  It's more reliable for checking modern CSS code.

https://jigsaw.w3.org/css-validator/validator

 

 

Nancy O'Shea— Product User, Community Expert & Moderator
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 01, 2024 May 01, 2024
LATEST

Try removing the deprecated properties in:

 

:where([contenteditable]:not([contenteditable=false])){
-webkit-user-select:auto;
-moz-user-select:auto;
user-select:auto;
word-wrap:break-word;
-moz-user-modify:read-write;
-webkit-user-modify:read-write
}

 

Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines