Archives for “CSS”

For all of you that don’t know what Less CSS is, check this first, but I will try to summarize it in a phrase: It is a way of writing cleaner CSS code using variables and mixins but with the need of being compiled to an actual CSS file. Lets see an example of .less [...]


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.