Dear programmers @ stackoverflow,
Is it possible to set an iframe as a background using css?
I explain myself a bit further:
Today I have a div in my website called div="lead"
When I use that div in my html files the picture 'lead_photo.jpg' displays as a background.
The code I use in my css file to obtain that is:
#lead { position: relative; float: left; clear: both;
width: 100%; height: 300px;
background: #dbdbdb url(../images/lead_photo.jpg) center no-repeat; }
So far so good.
Now, I would like to display my "google business view-tour", which I should integrate using the iframe link, as a background on my website in stead of the current photograph.
Is this possible?