Skip to content
Advertisement

validate css properties without selector using CSSLint module Javascript

I have a textarea which is basically the CodeMirror. I want to allow the user to only type the CSS properties without selector and then validate it using CSSLint. I am not sure how I can achieve this with the help of CSSLint.

For example, I want the user to type:

JavaScript

and then validate it using CSSlint without the selector. CSSLint gives error when I don’t use any selector. If a user type: h1{font-size:10px;} then it works fine but for direct property it does not. I want to know about a rule or a module that can help me in achieving the desired objective where the user can just type the CSS properties as follows:

JavaScript

and then I can easily validate whether the properties are correct or not.

Advertisement

Answer

You can wrap the user input in a selector, then use CSSLint.

For example, the following code reads the properties from an element with id="input" and logs them to the console.

JavaScript

Depending on your use case, you may want to add some extra checks to make sure there aren’t any CSSLint comments in the user input that would affect processing.

You can also add a rule to make sure that all the user input is contained in one style rule as expected:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement