column
UK[?k?l?m] US[?kɑ:l?m]
n.Column; column; column, column
Plural: columns
rule
英[ru:l] 美[ru?l]
n. Rules, regulations; rule, control; charter
vt.& vi.Control, dominate; judge; rule, ruling; price stability
vt. Rule; stipulate; manage; rule
vi. Rule; Jurisdiction; Ruling
Third person singular: rules Plural: rules Present participle: ruling Past tense: ruled Past participle: ruled
style
英[sta?l] 美[sta?l]
n. Way; style; fashion; appearance, taste
vt. Design; title; shape for...
vi. To conform to the popular style; to decorate with a carving knife draw
Third person singular: styles Plural: styles Present participle: styling Past tense: styled Past participle: styled
css column-rule-style attribute syntax
Function: Specifies the style rules between columns.
Syntax: column-rule-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset;
Description: none defines no rules. hidden defines hidden rules. dotted defines dotted rules. dashed defines dashed line rules. solid defines solid line rules. double defines double line rules. groove defines 3D grooved rules. The effect depends on the width and color values. ridge defines 3D ridged rules. The effect depends on the width and color values. inset defines 3D inset rules. The effect depends on the width and color values. outline defines 3D offset rules. The effect depends on the width and color values.?
Note: Internet Explorer 10 and Opera support the column-rule-style attribute. Firefox supports an alternative -moz-column-rule-style property. Safari and Chrome support an alternative -webkit-column-rule-style attribute. Internet Explorer 9 and earlier browsers do not support the column-rule-style attribute.
css column-rule-style attribute 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:40px; /* Firefox */ -webkit-column-gap:40px; /* Safari and Chrome */ column-gap:40px; -moz-column-rule-style:dotted; /* Firefox */ -webkit-column-rule-style:dotted; /* Safari and Chrome */ column-rule-style:dotted; } </style> </head> <body> <p><b>注釋:</b>Internet Explorer 不支持 column-rule-style 屬性。</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