N
Nathan Sokalski
To apply it to all img tags, use:
img { border: none; }
If you use:
a img { border: none; }
Then it will be applied only to img tags that are descendents of a tags (not
necessarily immediate children, as long as they are descendents)
I would suggest the first one if you want this for all img tags, because it
is a more straightforward and direct selector. Also, it takes away the need
to worry about fixing stuff if you were to decide to change something.
Hopefully this helps.
-
Nathan Sokalski
(e-mail address removed)
http://www.nathansokalski.com/
img { border: none; }
If you use:
a img { border: none; }
Then it will be applied only to img tags that are descendents of a tags (not
necessarily immediate children, as long as they are descendents)
I would suggest the first one if you want this for all img tags, because it
is a more straightforward and direct selector. Also, it takes away the need
to worry about fixing stuff if you were to decide to change something.
Hopefully this helps.
-
Nathan Sokalski
(e-mail address removed)
http://www.nathansokalski.com/