Posts about Css

The z-index IE bug

Yeah, the z-index IE bug, have you heard of it? I was bitten by it a couple of days ago. In my case, I had a list of text fields in a form layed out from top to bottom. The problem is, I have these... more
Posted by Toby on Aug 23, 08
About programming, javascript and css

Relativize that thing: todays CSS war story

Today, I had a seemingly simple problem: position a floating label element inside of a text input field, inside a elastic layout. To achieve an effect like:Moreover, I wanted to implement this as a... more
Posted by Toby on Aug 22, 08
About programming, javascript, css and html

Styling Links

Whenever you are styling links - like with background images, make sure you set display to block, otherwise things just won't work.
more
Posted by Toby on Jan 06, 08
About cssrecipes and css

How to make your inner frame extend all the way to the bottom of the window-you can't

This problem has come up a couple of times for me in the past. I shruged it off the last time, but this time I decided to do some research. What I found - as to the best of my knowledge, is that you... more
Posted by Toby on Jan 04, 08
About cssrecipes and css

CSS recipes: min-height hack

This really helped me outAnd the order of the lines is important, make sure it's:  height:auto !important;  height:640px;and no the other way around. And one more thing: Do not use... more
Posted by Toby on Jan 03, 08
About programming, cssrecipes and css