When I click this CSS in webpages on Chrome (OS: Windows), it works fine.
However, Firefox (OS: CentOS7) does not seem to apply this CSS on webpages. How can I resolve this issue?
Should I make adjustments in the CSS code below?
#submit .btn.btn-primary:before{
visibility: visible;
content: 'SubmitClicked';
line-height: 1.2em;
background-image: linear-gradient(180deg,#65a637,#5b9532);
background-repeat: repeat-x;
background-color: #65a637;
border: 1px solid #4d7e2a;
border-bottom-color: #4d7e2a;
border-top-color: #4d7e2a;
color: #fff;
box-shadow: inset 0 1px 0 #69ac39;
text-shadow: none;
display: inline-block;
padding: 4px 10px;
font-size: 12px;
line-height: 16px;
text-align: center;
vertical-align: middle;
cursor: pointer;
border-radius: 4px;
}
Your assistance is appreciated.