Sigurður Árni Svanbergsson

Full speed or no speed!

Posts tagged css

Apr 23

Remove Webkit Search Input Styles

input[type=search] { -webkit-appearance: none; } input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { display: none; }


Jul 7

Simplifying CSS Selectors

Steve Souders on CSS selector performace. Very interesting for developers.

It’s clear that CSS selectors with a key selector that matches many elements can noticeably slow down web pages.

Jun 10

Natalie Dowen on styling buttons to look like links.

I am definitely not encouraging the redesign of button elements to look like links. I believe that we shouldn’t mess too much with browser defaults for functional things like form controls, scroll bars and the like.

Amen to that.

Read the full article on styling buttons to look like links.