本篇文章主要詳談div中的dispaly:inline樣式 和span的差別,有興趣的朋友一起來了解以下吧!
程式碼如下:
<span style="background-color:red;">xxx</span> <span style="background-color:red;">xxx</span> <div style="background-color:red;display:inline">xxx</div> <div style="background-color:red;display:inline">xxx</div> <span style="background-color:red;">我是没有间隔的</span><span style="background-color:red;">伟大的hutia,挖哈哈哈</span>
總結:
#一句話就是在CSS中透過display:inline-block對一個物件指定inline-block屬性,可以將物件呈現為內聯對象,但是物件的內容作為區塊物件呈現。
相關推薦:
jquery如何實作div與span的keydown事件詳解
html5中關於div與span html區塊級元素的詳細介紹
#以上是詳談div中的dispaly:inline樣式 和span的差別的詳細內容。更多資訊請關注PHP中文網其他相關文章!