Is it not possible to nest a css class within @keyframes ?

Using a snippet of a CSS keyframe below, when, in this pseudo code, class = animationFrames translates the other element, represented in this pseudo code by the name class=elementname translates as well but causes the first class (animationFrames) to have an opacity of, once again, in this example, 0.95 ?

   @keyframes animationFrames{
      0% {
        transform:  translate(-274px,100px)  ;
        .elementname {
          opacity: .95;
        };
      }
      9% {
        transform:  translate(-202px,-39px)  ;
}
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to