How to center an iframe horizontally?

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

Consider the following example: (live demo)

HTML:

div

CSS:

div         


        
12条回答
  •  时光取名叫无心
    2020-11-29 17:04

    Add display:block; to your iframe css.

    div, iframe {
        width: 100px;
        height: 50px;
        margin: 0 auto;
        background-color: #777;
    }
    
    iframe {
        display: block;
        border-style:none;
    }
    div

提交回复
热议问题