I have a section set up on this webpage: (located about midway down the page).
The partition in the column displays as light grey in CHROME and Safari, yet it shows up as BLACK when viewed in Firefox. How do I go about solving this issue? It's frustrating because I copied this code from here: http://www.w3schools.com/cssref/css3_pr_columns.asp - leading me to believe that it would function flawlessly.
This is the code snippet:
.newspaper
{
-moz-column-count:2; /* Firefox */
-webkit-column-count:2; /* Safari and Chrome */
column-count:2;
-moz-column-gap:40px; /* Firefox */
-webkit-column-gap:40px; /* Safari and Chrome */
column-gap:40px;
-moz-column-rule:1px outset #C6C6C6; /* Firefox */
-webkit-column-rule:1px outset #c6c6c6; /* Safari and Chrome */
column-rule:1px outset #c6c6c6;
font-size: 14px;
line-height: 1.5em;
color: #000000;
font-family: "museo-sans", sans-serif;
font-style: normal;
font-weight: 400;
padding: 8px 0px 8px 0px;
}