I need an image to cover an iframe. Normally I do

<div class="row-fluid">
  <div class="span3">...</div>
  <div class="span3">
    <div id="absolute-origin">
      <iframe .../>
      <img class="over" .../>
    </div>
  </div>
</div>

css
img.over {
  position: absolute;
  z-index: 2;
}

But using Bootstrap's fluid rows the absolute does not make the image 
relative to its container div as it does when not using Bootstrap. In the 
above I need the iframe and image to be positioned where at the origin of 
<div id="absolute-origin"> so overlapping with the image on top.

How should I do this with Bootstrap? Actually I need an <a ...><img 
.../></a> to cover and be the same size as the iframe. 

-- 
You received this message because you are subscribed to the Google Groups 
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to