Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #16461, comment 44


Ignore:
Timestamp:
07/31/2012 10:05:19 PM (13 years ago)
Author:
azaozz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16461, comment 44

    initial v1  
    11Replying to [comment:43 ocean90]:
    22
    3 Small correction: seems that both the -moz- and -o- rules don't work when they are after the old-style -webkit- rule, so the order should be:
    4 
    5 {{{
    6 .grad-to-top { 
    7         background-color: #fff;
    8         background-image: -moz-linear-gradient(top, #fff, #000);
    9         background-image:   -o-linear-gradient(top, #fff, #000);
    10         background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#000);
    11         background-image: -webkit-linear-gradient(top, #fff, #000);
    12         background-image:   linear-gradient(to bottom, #fff, #000);
    13 }
    14 }}}
     3Small correction: seems that both the -moz- and -o- rules don't work...
     4Edit: disregard that :) Was just a typo in the above example.