2

I have an iframe, but I dont like the default, "dented" into the page look. How can I change this so that it appears at the same level as the surrounding page and blends right in?

ColinE
  • 68,894
  • 15
  • 164
  • 232
user671891
  • 165
  • 1
  • 3
  • 14

2 Answers2

3

Or you can use the frameborder attribute.

<iframe src="..." frameborder="0">
Ole Melhus
  • 1,899
  • 12
  • 17
0

You can use CSS:

IFRAME { border:0px; }
Fosco
  • 38,138
  • 7
  • 87
  • 101
  • Without CSS, the entire site is without CSS and it's outside my control to change since it's my company's web site. – user671891 May 20 '11 at 14:31