2007-07-23 03:38:34
·
answer #1
·
answered by grey_worms 7
·
0⤊
0⤋
in the CSS:
img { border: 0; }
This will give every image on the site, no borders and you don't need any inline styling. Inline styling is NOT XHTML compliant, it is bad semantics to mix structure and presentation.
Use an external stylesheet, but if you're using and internal one, that's up to you.
2007-07-23 03:42:11
·
answer #2
·
answered by Dirty Randy 6
·
0⤊
0⤋
you could the two do because of the fact the 1st poster pronounced, or the popular approach may be to function this on your head section. variety img {border: none;} variety this might reason all photos on your web site to have not any border, without changing the rest.
2016-09-30 12:26:48
·
answer #3
·
answered by ? 4
·
0⤊
0⤋
HTML Solution:
HTML + CSS Solution:
.
2007-07-23 03:39:28
·
answer #4
·
answered by Chad 5
·
0⤊
0⤋
In the image tag, add this -
style="border:0px;"
This is XHTML standards compliant. If you are not bothered about that, you can also try:
But the first option is preferred.
2007-07-23 03:37:30
·
answer #5
·
answered by Eddie 2
·
0⤊
1⤋