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?
Asked
Active
Viewed 1,427 times
2 Answers
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