Here are my simple iframe properties and values . . .
<iframe
width="880"
height="1000"
frameborder="0"
style="background-color:#FFF"
src="http: etc . . .</iframe>
This accomplishes exactly what I needed for the iframe - perfectly!
I’ve tried placing this in my CSS page using a class
.mapframe { width="880"
height="1000"
frameborder="0"
background-color:#FFF
}
In my html I did this.
<div class=“mapframe”
followed by <iframe and the src="etc . . .<iframe>
This however does not work.
What am I missing here?
Thanks . . . Rick