WordPress style sheet comments have “/* =” before the name of the comment. Why isnt it just /* and why does it have “=” after it? Does it help to find comments easily or is it there for nothing?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Even though I would highly recommend against using w3schools.com, they do a good job explaining this question:
CSS Comments
Comments are used to explain your code, and may help you when you edit the source code at a later date. Comments are ignored by browsers.
A CSS comment begins with “
/*“, and ends with “*/“, like this:Source
Regarding the =, it may be used to specify a point in the comment that is used for replacing or formatting later.
Update 1
Found this regarding the
=sign.