javascript - How to align text in bottom of label -


i've got problems text in label bottom of label.

i'm animating falling text, label "seem" fall should, text stays on top, it's not following label downwards. please check jsfiddle out, press button see problem. have tried many different ways without coming working solution.

http://jsfiddle.net/kaze72/jq6ua/

.uppgifter {     vertical-align: text-bottom; } 

seems not help!

you can try

.uppgifter {     display: table-cell;     vertical-align: bottom;     background-color: yellow; } 

jsfiddle

updated jsfiddle .uppgifter's height in animate method matches #spelplan's height.


Comments

Popular posts from this blog

c# - Can I intercept a SOAP response in .NET before a content type binding mismatch ProtocolException? -

python - Terminate a gnome-terminal opened with subprocess -

c - Unrecognised emulation mode: elf_i386 on MinGW32 -