yoel
yoel

Reputation: 409

Vertical Align middle

how to make link "test" stay in the middle of grey box when the grey box is resized?

here is the code : http://jsfiddle.net/yuliantoadi/LXHmz/

Upvotes: 2

Views: 728

Answers (1)

Matt Ball
Matt Ball

Reputation: 359956

div.grid_1 {
    position: absolute;
    top: 50%;
    margin-top: -0.5em;
    right: 0;
}

http://jsfiddle.net/mattball/xUQnR/

screenshot

Upvotes: 4

Related Questions