/*
 * Forces the iframe to fill its container width.
 * The 1px + min-width technique is required to allow the iframe to shrink
 * as well as grow — without it, once the iframe grows it can never shrink back.
 */
#resize-iframe {
    width: 1px;
    min-width: 100%;
    border: 0;
    display: block;
}
