I'm using an a
tag in my html page which uses a css
i can't place or modify.
In the defined css
a:link
is styled in a way i dont want to use in my html
file.
How can i use my a
tag in order to delete any present styling inherited from the css
, without modifying the css
file?
Something like
<a href="foo.bar" style="none">foobar</a>
maybe?
Remember, for now I cannot modify the css
file!
style="line-height: normal; color: inherit;
etc. etc.<a>
's attribute.:not(#linkID)
to the selector with which you style the other links. That's only slight editing of the CSS file.