EkingRDL
-
100% height not working
@Sam_Purcell, you should use min-height: 100%; not height.
-
Full Screen Scalable Background Image That Fades In On Load
You could just check with modernizr if js is enabled if it is display none it in your css and then .fadeIn() with jquery onLoad, but this might get a little bit buggy.
-
Disabled javascript
@Eric, how can you do this with css: Sorry, to experience the application/website fully you must enable javascript. That's what @vin308 was asking right?
-
Line-height not working inside span
Use inline-block if you want it on the same line
-
Disabled javascript
That's not very nice to do but you can with noscript
-
How to make an image center (horizontally) inside a bigger div? Using only css.
You can use CSS calc unit .logo { margin-top: calc(50% - logoheight); }
-
my site looks bad on internet explorer
why don't you fix it with internet explorer class, this is what i do everything that has ie will only apply to ie, like: .ie header { /* Only Applied To IE */ }
-
transitions -- is there a way to auto-start?
Don't place it in the hover just put the animation in the regular style .foo { animation: theAnimation 2s linear; } .foo:hover { /* not here */ }