css column-rule-color attribute specifies the color rule of the dividing line between columns when elements are displayed in columns. Note: The style rules between columns must be set first before the color rules can take effect.
How to use the css column-rule-color property?
column-rule-color attribute specifies color rules between columns.
Syntax:
column-rule-color: color;
Attribute value:
● Color: Specifies color rules.
Note:
Internet Explorer 10 and Opera support the column-rule-color attribute. Firefox supports an alternative -moz-column-rule-color property. Safari and Chrome support an alternative -webkit-column-rule-color property. Internet Explorer 9 and earlier browsers do not support the column-rule-color attribute.
css column-rule-color property example
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> .newspaper { column-count:3; column-gap:40px; column-rule-style:outset; column-rule-color:#ff0000; /* Firefox */ -moz-column-count:3; -moz-column-gap:40px; -moz-column-rule-style:outset; -moz-column-rule-color:#ff0000; /* Safari and Chrome */ -webkit-column-count:3; -webkit-column-gap:40px; -webkit-column-rule-style:outset; -webkit-column-rule-color:#ff0000; } </style> </head> <body> <p><b>注意:</b> Internet Explorer 9及更早 IE 版本浏览器不支持 column-count 属性。</p> <div class="newspaper"> 当我年轻的时候,我梦想改变这个世界;当我成熟以后,我发现我不能够改变这个世界,我将目光缩短了些,决定只改变我的国家;当我进入暮年以后,我发现我不能够改变我们的国家,我的最后愿望仅仅是改变一下我的家庭,但是,这也不可能。当我现在躺在床上,行将就木时,我突然意识到:如果一开始我仅仅去改变我自己,然后,我可能改变我的家庭;在家人的帮助和鼓励下,我可能为国家做一些事情;然后,谁知道呢?我甚至可能改变这个世界。 </div> </body> </html>
Rendering:
The above is the detailed content of How to use css column-rule-color property. For more information, please follow other related articles on the PHP Chinese website!