How to center an iframe horizontally?

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

Consider the following example: (live demo)

HTML:

div

CSS:

div         


        
12条回答
  •  青春惊慌失措
    2020-11-29 17:25

    HTML:

    div

    CSS:

    #all{
        width:100%;
        float:left;
        text-align:center;
    }
    div.sub, iframe {
        width: 100px;
        height: 50px;
        margin: 0 auto;
        background-color: #777;
    
    }
    

提交回复
热议问题