On 16/04/2011 4:16 AM, Tim Climis wrote:
Yeah... I was about to point out the same thing.  A 180 degree
rotation is not the same as a vertical reflection.  The "e" should be
below the "e", not the "s."

Really, to get the desired effect, you'd want transform: scaley(-1);
It works in webkit.  Haven't tried anything else.

---Tim


This is to simple. Sorry Gabriele. Try the below and the text is truely mirrored. Also you don't need another element.


<!DOCTYPE html>

<style type="text/css">

h1 {
        text-align: center;
        font-size: 200%;
        font: normal 6em Impact, sans-serif;
        position:relative;
        line-height: 0.9;
        color: #333;
}

h1::after {
        -webkit-transform: rotateX(180deg);
        left:0;
        right:0;
        top: 100%;
        position:absolute;
        content: 'Test';
        color: #999;
        opacity: 0.3;
}

</style>

<h1>Test</h1>



--
Alan http://css-class.com/

Armies Cannot Stop An Idea Whose Time Has Come. - Victor Hugo
______________________________________________________________________
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