Archives for March, 2009

If you are a web developer, maybe this post title doesn’t say nothing new to you. But I’m really really tired of IE annoyances. Today  I worked extra hours on an ajax problem with IE. The page I was working on has an ajax call like this one: <div id="LoginForm"> </div> <script type="text/javascript"> new Ajax.Updater('LoginForm', [...]


If you manage :focus CSS styles for certain input controls you may have noticed that Safari attempts against your pretty innovative design adding a blurry blue outline effect. You can avoid this adding this: input:focus { outline-width:0; ... } And that’s all.