Changing the Default Text Selection Colors in Modern Browsers
Changing the Default Text Selection Colors in Modern Browsers
If you are using a modern browser, you may have noticed when you select text on our website that it has a yellow background instead of the standard blue selection. This is a simple change that you can make to your website today to add a small bit of flair.
At the time of this writing, text selection is supported in the latest versions of Chrome, Safari, Firefox, Opera, and Internet Explorer (whoa?!)
/* webkit, Opera, IE9 */
::section {
background: purple;
color: white;
}
/* Mozilla Firefox */
::-moz-selection {
background: purple;
color: white;
}
This sentence will be highlighted in red
This sentence will be highlighted in green
This sentence will be highlighted in purple
This sentence will inverted
-
When LESS is Actually More
We started using LESS on with the redesign of this website. Combined with CodeKit, LESS is one of the most powerful tools I have encountered in my time as a developer. Together, these two will quicken your workflow and alleviate a lot of your headaches.
Continue Reading -
All Business Owners Should Read The Lean Startup by Eric Reis
Let me start off by saying that I'm not getting paid for writing this, and I won't receive any affiliate money for linking you to this book. I just want you to read this book now. The Lean Startup by Eric Ries can help any business grow.
Continue Reading