How to align iframe always in the center

前端 未结 6 1489
臣服心动
臣服心动 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:20

    First remove position:absolute of div#iframe-wrapper iframe, Remove position:fixed and all other css from div#iframe-wrapper

    Then apply this css,

    div#iframe-wrapper {
      width: 200px;
      height: 400px;
      margin: 0 auto;
    }
    

    FIDDLE DEMO

提交回复
热议问题