Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In short, what I'm trying to make are diamonds through rotating square elements and I want the text conform to the diamond and not the box. I'm not sure if that is possible.

The second thing that I'd like to do is be able to stack diamonds on top of each other, from tip to tip. Is there anyway to do with with transforms? Here's a fiddle of what I have so far: http://jsfiddle.net/aZeCz/

.diamond {
    overflow: hidden;
    display: table;
    position: relative;
    width: 400px;
    height: 400px;
    -webkit-transform-origin: 60% 100%;
    -webkit-transform: translate(0) rotate(45deg);
    color: #fff;
}
    .diamond > p {
        -webkit-transform: rotate(-45deg);
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

.red {
    background: red;
}

.black {
    background: black;
}


<div class="diamond black">
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
                    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
                    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
                    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
                    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
                    proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
                    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
                    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
                    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
                    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
                    proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                </div>

                <div class="diamond red">
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
                    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
                    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
                    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
                    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
                    proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
                </div>
share|improve this question
3  
Not yet, but soon :) html5rocks.com/en/tutorials/regions/adobe – chrisgonzalez Nov 9 '12 at 20:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.