Viewing category »

css


December 30, 2010

Every dev’signer needs a boilerplate

Posted 10:46 am, comments (0)

I often find myself reusing code snippets, spending a fair amount of time referencing good coding and layout practices I have (or others have) used in the past, researching the latest improved ways to do the same old thing. What now feels like ages ago, and while investigating new HTML5 implementations, I came across a code base that I’ve since used in several projects.

Enter HTML5 Boilerplate brought to you by the venerable Paul Irish and open web vigilante Divya Manian. I think the website says it best:

HTML5 Boilerplate is the professional badass’s base HTML/CSS/JS template for a fast, robust and future-proof site.

Chock-full of the latest and great HTML5, CSS, and JS goodness to get you started on future web projects. Even better, if you are building a project in WordPress, there is also a HTML5 Boilerplate WordPress template available on Github.

It’s saving me time, it’s a great project, and I figured I’d help spread the word. Enjoy.


February 25, 2010

One Stylesheet, Multiple Media Types

Posted 10:02 am, comments (0)

If you’re anything like me, you’re always looking for a way to increase productivity, and cut build time when creating or updating websites. Keeping track of styles throughout multiple stylesheets can get time consuming, not to mention burdensome. Enter the @media rule which allows you to pull your screen, print, or handheld css styles together and into one stylesheet. (more…)