Home › Forums › CSS › Need help with "Responsive css" on my style sheet? › Reply To: Need help with "Responsive css" on my style sheet?
November 27, 2013 at 11:04 am
#157248
Participant
The reason why some of the colours work only in Firefox is because in the css you have cs3 gradient brackground prefixed for FF only:
background: -moz-linear-gradient(center top , #FEFEFE, #F4F4F4) repeat scroll 0 0 padding-box rgba(0, 0, 0, 0) !important;
You’ll also need the declarations for the other browsers, e.g:
background: -webkit-linear-gradient(top, #FEFEFE 0%, #F4F4F4 100%);