column
UK[?k?l?m] US[?kɑ:l?m]
n.Column; column; column, column
Plural: columns
gap
UK[g?p] 美[ɡ?p]
n. Gap; distance; difference; American casual clothing brand
vt.Cause a gap; make a gap; cause a gap
vi.Open; open; have a gap; reveal a crack
Third person singular: gaps Plural: gaps Present participle: gapping Past tense: gapped Past participle: gapped
css column-gap property syntax
Function: Specifies the interval between columns.
Syntax: column-gap: length|normal;
Description: length sets the gap between columns to the specified length . normal specifies that the interval between columns is a regular interval. The W3C recommended value is 1em.
Note: If column-rule is set between columns, it will be displayed in the middle of the interval. Internet Explorer 10 and Opera support the column-gap property. Firefox supports an alternative -moz-column-gap attribute. Safari and Chrome support an alternative -webkit-column-gap attribute. Internet Explorer 9 and earlier browsers do not support the column-gap attribute.
css column-gap property example
<!DOCTYPE html> <html> <head> <style> .newspaper { -moz-column-count:3; /* Firefox */ -webkit-column-count:3; /* Safari and Chrome */ column-count:3; -moz-column-gap:30px; /* Firefox */ -webkit-column-gap:30px; /* Safari and Chrome */ column-gap:30px; } </style> </head> <body> <p><b>注釋:</b>Internet Explorer 不支持 column-count 屬性。</p> <div class="newspaper"> 人民網(wǎng)北京2月24日電 (記者 劉陽(yáng))國(guó)家發(fā)展改革委近日發(fā)出通知,決定自2月25日零時(shí)起將汽、柴油價(jià)格每噸分別提高300元和290元,折算到90號(hào)汽油和0號(hào)柴油(全國(guó)平均)每升零售價(jià)格分別提高0.22元和0.25元。 此次國(guó)內(nèi)成品油價(jià)格調(diào)整幅度,是按照現(xiàn)行國(guó)內(nèi)成品油價(jià)格形成機(jī)制,根據(jù)國(guó)際市場(chǎng)油價(jià)變化情況確定的。去年11月16日國(guó)內(nèi)成品油價(jià)格調(diào)整以來(lái),受市場(chǎng)預(yù)期歐美經(jīng)濟(jì)復(fù)蘇前景向好以及中東局勢(shì)持續(xù)動(dòng)蕩等因素影響,國(guó)際市場(chǎng)原油價(jià)格先抑后揚(yáng),2月上旬WTI和布倫特原油期貨價(jià)格再次回升至每桶95美元和115美元以上。雖然近兩日價(jià)格有所回落,但國(guó)內(nèi)油價(jià)掛鉤的國(guó)際市場(chǎng)三種原油連續(xù)22個(gè)工作日移動(dòng)平均價(jià)格上漲幅度已超過(guò)4%,達(dá)到國(guó)內(nèi)成品油價(jià)格調(diào)整的邊界條件。 通知指出,這次成品油調(diào)價(jià)后,國(guó)家將按照已建立的補(bǔ)貼機(jī)制,繼續(xù)對(duì)種糧農(nóng)民、漁業(yè)(含遠(yuǎn)洋漁業(yè))、林業(yè)、城市公交、農(nóng)村道路客運(yùn)(含島際和農(nóng)村水路客運(yùn))等給予補(bǔ)貼。同時(shí),為保證市場(chǎng)物價(jià)基本穩(wěn)定,防止連鎖漲價(jià),對(duì)與居民生活密切相關(guān)的鐵路客運(yùn)、城市公交、農(nóng)村道路客運(yùn)(含島際和農(nóng)村水路客運(yùn))價(jià)格不作調(diào)整。 通知要求,中石油、中石化、中海油三大公司要組織好成品油生產(chǎn)和調(diào)運(yùn),保持合理庫(kù)存,加強(qiáng)綜合協(xié)調(diào)和應(yīng)急調(diào)度,保障成品油供應(yīng)。各級(jí)價(jià)格主管部門要加大市場(chǎng)監(jiān)督檢查力度,依法查處不執(zhí)行國(guó)家價(jià)格政策,以及囤積居奇、造謠惑眾、合謀漲價(jià)、搭車漲價(jià)等違法行為,維護(hù)正常市場(chǎng)秩序。 </div> </body> </html>
Run instance ?
Click the "Run instance" button to view the online instance