HTML element which defaults to display:inline-block?

后端 未结 10 2601
北海茫月
北海茫月 2020-12-14 05:33

defaults to block

defaults to inline

Is there one that defaults to inline-

10条回答
  •  抹茶落季
    2020-12-14 05:44

    button, textarea, input, and select default to inline-block.

    In the event you would want to inline-block a div you'd give it a class name.

    .inline-block {
        display: inline-block
    }
    

    Then...

    CORRECTION

    I was mistaken about img. It seems it defaults to inline and not inline-block

提交回复
热议问题