How to align iframe always in the center

前端 未结 6 1487
臣服心动
臣服心动 2021-01-02 12:58

I have an iframe surrounded by div element and I am simply trying to position it always in the center. here is my jsfiddle effort : jsfiddle

and tr

6条回答
  •  时光说笑
    2021-01-02 13:32

    I think if you add margin: auto; to the div below it should work.

    div#iframe-wrapper iframe {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        right: 100px;
        height: 100%;
        width: 100%;
    }
    

提交回复
热议问题