how to disable style for element already has styled with css by element name and I can’t make the same same style by etering a class name in css just #ElementName which style attribute doesn’t shown on html code?
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.
You could try:
but my question is: why do you want to remove CSS styles? Usually this is a sign that you’re not doing something in a good way. Like some will write code like this:
The problem of course is that you don’t know what to set the background to in order to reset it to normal. That’s why you should use classes:
with:
Problem solved.
So I can’t comment on your approach because you haven’t provided enough detail for that but in my experience questions like “how do I remove a style?” are a red flag.