How to center an iframe horizontally?

前端 未结 12 940
梦毁少年i
梦毁少年i 2020-11-29 16:48

Consider the following example: (live demo)

HTML:

div

CSS:

div         


        
12条回答
  •  独厮守ぢ
    2020-11-29 17:27

    In my case solution was on iframe class adding:

        display: block;
        margin-right: auto;
        margin-left: auto;
    

提交回复
热议问题