Remove “whitespace” between div element

前端 未结 8 1919
北海茫月
北海茫月 2020-11-29 06:59

This is my HTML code


8条回答
  •  没有蜡笔的小新
    2020-11-29 07:09

    HTML


    CSS

    #div1 {
        width:150px;height:100px;white-space:nowrap;
        line-height: 0px;
        border:blue 1px solid;padding:5px;
    }
    #div1 div {
        width:30px;height:30px;
        border:blue 1px solid;
        display:inline-block;
        *display:inline;zoom:1;
        margin:0px;outline:none;
    }
    

    DEMO

提交回复
热议问题