Joined January 2013
·
Posted to
Full Background in CSS
over 1 year
ago
Been using "background-size: cover;" for a couple of projects lately, and it rocks. Didn't know about the nifty IE fallback though, thanks for sharing.
Posted to
How to force a button to activate a file uplaod.
over 1 year
ago
good tip.
( typo in your title though: "uplaod" )
Achievements
77 Karma
3,365 Total ProTip Views
Forked
Have a project valued enough to be forked by someone else
Nephila Komaci
Have at least one original repos where PHP is the dominant language
couldn't you achieve the same result with absolute positioning and height/width: 100% ?
div{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; } </code>
no need for javascript this way.