SASS what does this problem mean?

Don't understand what the problem is?

The problem is in the CSS document, working on a SASS document.

Unfortunately, when I write a command in the SASS domain, it doesn't appear in the CSS document and therefore doesn't execute. How can I fix this?

And my second problem is this error message: Is the image related to these codes

 -webkit-appearance: button; /* Problem CSS Dokument */ -webkit-appearance: listbox; -webkit-appearance: none; -webkit-appearance: none;
(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
2 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Ireeb
1 year ago

Some properties must be defined for specific browsers.

The property is actually called “appearance”.

-webkit-appearance is the definition especially for webkit browsers like Chrome. The prefix/prefixing is called. Also made by compilers automatically.

So try to define (or only, usually enough) appearance instead of -webkit-appearance.

And in addition: Is this just an example, or why do you define the same property 4 times? In this example, only the bottom one would grab.