How Long Should We Ban IPs?There are all kinds of reasons IPs get banned. A forums manager might ban an IP because the user at it is spamming. An admin of an email server might also ban IPs for spamming. A web service might ban … | September 3, 2010 | 41 comments |
→ BonBon ButtonsThese are way above and beyond the level of any other “CSS3 buttons” I’ve seen. Multiple backgrounds combining gradients and images, uneven border-radius, pseudo elements, HSL coloring, @font-face icons, transitions, box shadows, text shadows, hover and active states… the list … | September 2, 2010 | |
→ HTML, CSS, and Javascript from the Ground UpI’ve done my own The VERY Basics screencast, but this full series from Google, targeted at just-starting-out beginners, would be a good place to go directly after my intro, to take things further along. … | September 1, 2010 | |
Digging Into WordPress, The Book, Version 3When we first released the book Digging Into WordPress, we thought of some reasons why people might not want to buy it. A big reason is because tech books can go out of date quickly, especially when the subject … | September 1, 2010 | 44 comments |
Percentage Bugs in WebKitUsing percentage values for certain things can have slightly unexpected results in WebKit based browsers. For instance, if you have a series of columns set in percentage widths with percentage padding, WebKit can calculate their sizing rather strangely.… Update: WebKit | August 30, 2010 | 31 comments |
→ More on CSS Selector PerformanceThis is a direct link to a PowerPoint file by Steve Souders (in April 2009). Of particular interest is pages 19-33 with all the information on CSS selectors. Evidence points to yes, there are efficiency differences in how you write … | August 29, 2010 | |
CSS is to HTML as a CMS is to… HTMLFrom the desk of important beginner concepts: You have a website with 100 pages on it. All 100 pages use the same style.css file. You’d like to change the background color of every single page. You make one adjustment in … | August 28, 2010 | 52 comments |
WebKit HTML5 Search InputsOne of the new types of inputs in HTML5 is
It does absolutely nothing in most browsers. It just behaves like a text input. This isn’t a problem. The spec doesn’t require it to do … | August 25, 2010 | 45 comments |
→ StylebotChrome users and CSS wranglers, check this out. It’s an extension which adds a “css” link on the right in your URL bar. Click it to open a CSS Edit-like pane on any website where you can click elements and … | August 25, 2010 | |
→ .net Magazine AwardsThe Oscars of web nerdery. I’m nominated for a flatteringly high number of categories! Web personality of the year? You know it.… | August 24, 2010 | |
New Poll: Multiple JavaScript LibrariesHave you ever tried to debug a site where a beginner web designer has loaded the page with scripts? There’s a couple copies of jQuery in various versions, maybe a little Prototype or MooTools thrown in. We can laugh a … | August 24, 2010 | 54 comments |
→ FireQueryThis is a very cool extension for Firebug (add-on for an add-on?) that expands Firebug’s capabilities with jQuery. For instance, a built in jQueryify button, showing attached event handlers in the Content / DOM tree view, and highlighting all elements … | August 23, 2010 | |
Intentional DifficultyHere’s some food for thought. When designing something that you are reasonably certain the user is willing (or forced) to invest time in learning to use proficiently, is it beneficial to intentionally make some tasks just slightly more difficult than … | August 23, 2010 | 38 comments |
Poll Results: Action Verb ClarityThe latest poll was all about picking the best sentence to a user to perform a specific action on a website. The choices are listed below, sorted from most popular to least:
… | August 22, 2010 | 15 comments |
→ Fixing Background “Bleed”Mike Harding with a desperately needed fix for when backgrounds “leak” out of elements with borders and border-radius.… | August 21, 2010 | |
Forums | August 21, 2010 | 37 comments |
Browser JumpingIf you asked me right now, Hey Chris, what’s your favorite browser? I wouldn’t know what to tell you! I’ve been a Firefox user primarily over the past few years, but over the last several months my allegiance is no … | August 20, 2010 | 97 comments |
→ Blogging is Still Awesome & Yours Can Kick-AssThat’s the title of my proposed talk for SXSW. I’m rather excited about it. I’m going to be talking a lot about this blog and how I’ve done things over the years and what has and hasn’t been successful for … | August 19, 2010 | |
Getting Started with CakePHP: An Event ManagerThe following is a guest post by r0mk1n. I was able to easily follow along and have the demo app up and running on my machine in just a few minutes. It’s pretty cool how easy it has become … | August 18, 2010 | 44 comments |
→ Touch “slide to unlock” in Mobile SafariEvan Black took my “slide to unlock” demo and made the actual finger-slider work with Mobile Safari using JavaScript touch events. I updated the demo on this site as well, making it work both on desktop browsers and Mobile Safari … | August 17, 2010 | |
Show Markup in CSS CommentsLet’s say you are creating a CSS file for a modular bit of a webpage. Perhaps you are the type that separates your CSS files into bits like header.css, sidebar.css, footer.css, etc. I just ran across an idea I thought … | August 17, 2010 | 42 comments |
Design v7I rolled out a new design this weekend! As usual it’s a bit of an aesthetic overhaul (blue!). I’m going to cover the why, the new aspects, and some of the new technology involved. RSS readers, you’ll have to … | August 16, 2010 | 232 comments |
→ BetterSource for Safari 5One of the major bummers about Safari is that the “View Source” view is totally lackluster. No code highlighting, no live links, no line numbers, no refresh. Boooo. The BetterSource extension solves every one of those problems. | August 15, 2010 | |
HTML5 TemplatesPapa bear: HTML5 Boilerplate | August 14, 2010 | 29 comments |
iPhone “slide to unlock” Text in WebKit/CSS3There are a couple of WebKit specific properties that make giving text a gradient background possible:
Those will allow the background of the parent element to become the background of the text inside. I gots to … | August 13, 2010 | 48 comments |
CSS Sprites WorkflowWhen you are coding up a brand new site, I think this is a pretty efficient workflow for how to handle CSS Sprites.
… | August 12, 2010 | 37 comments |
→ Wufoo API ContestWe’re giving away a friggin’ Battle Axe (and $3,000) to the winner of the Wufoo API contest. Cash prizes and Wufoo accounts for life to the second and third place winners as well. Developers, you have until the end of … | August 11, 2010 | |
Double Click in CSSWith the recent proliferation of touch devices, the web designers of the world are losing our beloved mouse pointer. There has been some interesting talk about how we essentially lose the :hover pseudo class in CSS as well as mouseenter, … | August 11, 2010 | 20 comments |
→ Performance of CSS SelectorsThe idea here was to compare different styles of writing CSS and see how they affect the page rendering. So using all ID’s, using all classes, using OOCSS techniques, etc. I gave some best practices advice on this a little … | August 10, 2010 | |
→ Cross-Browser HTML5 Video and AudioMediaElement.js is a jQuery-based package for allowing us to:
I’ll be using it in … | August 10, 2010 | |
Linkage ReturnsWay back when I used to do “Links of Interest” style posts. I’m happy to announce now that 1) There is a new design of this site coming within the next few weeks and 2) Linkage is coming back. I’m … | August 10, 2010 | 19 comments |
Expanding Images using HTML5′s | August 9, 2010 | 43 comments |
Fix Inserted HTML5 Content with HTML5 innerShivWhen working with HTML5 today, many of you know that you’ll need to include the “HTML5 shiv” to ensure that CSS will recognize and be able to style those elements in browsers that aren’t yet hip to HTML5.
| August 5, 2010 | 40 comments |
Inset Border Effect jQuery PluginThis is a guest post by Robin Thrift who wrote to me with some demo code for creating this effect. Together we turned it into a jQuery plugin. Enjoy! I was browsing through a few Flash templates on ActiveDen when … | August 3, 2010 | 56 comments |
Guidelines for URI DesignThis is a guest post by Jacob Gillespie who started an interesting thread on Forrst about this topic. I invited him to post it here, to which he graciously accepted. Over the past several years, I have taken an interest … | August 2, 2010 | 111 comments |
Guest on jQuery PodcastI had the honor of being on the jQuery Podcast #30 with Ralph Whitbeck and Doug Neiner. We talk about some of the different parts of CSS-Tricks, the jQuery conference, and the difference between designer and developers. We also … | July 30, 2010 | 9 comments |
CSS Run-in Display ValueCSS has a value for the display attribute called run-in. It’s like this:
The point is to allow a header to run into text below it, without sacrificing semantics or running into the problems you … | July 29, 2010 | 39 comments |
Interviewed on Unmatched Style PodcastThe crew from Unmatched Style are the folks that run ConvergeSE which I was lucky enough to attend this year. They are really great folks! While I was down there, I was interviewed by Gene for their podcast. Thanks to … | July 28, 2010 | 18 comments |
Dude, you browse with JavaScript on?Dude, you browse with JavaScript on? Uhm, yeah, why wouldn’t I? It’s totally insecure. Hackers could destroy your computer. Hackers? What is this 1995? And, no they can’t. They can definitely steal information about you without you knowing. Like what?… | July 26, 2010 | 197 comments |
Understanding border-imageThe new CSS3 property border-image is a little tricky, but it can allow you to create flexible boxes with custom borders (or drop shadows, if that’s your thing) with a single div and a single image. In this article I … | July 21, 2010 | 32 comments |
Local Previews of Images from File Inputs (fail)A little while back there was a guest post about Ajax image previews. It’s a nice technique but it left myself and a few other commenters thinking: wouldn’t it be cool if you didn’t have to upload the image … | July 19, 2010 | 23 comments |
Textarea TricksOh, <textarea>’s. How many quirks you posses. Here is a collection of nine things you might want to do related to textareas. Enjoy. 1. Image as textarea background, disappears when text is entered. You can add a background-image to a … | July 16, 2010 | 82 comments |
Tips for Web Design that Crosses CulturesThe internet has the potential to put a global audience at your fingertips, but there’s far more to reaching across cultural divides than simply putting your website out there and waiting for people to visit it. There are issues to … | July 14, 2010 | 24 comments |
Google Maps SliderGoogle Maps has a JavaScript API now in it’s third version. I remember playing with some version of the API back in v2 and thought it was kinda cool but a bit obtuse. For one thing, v3 no longer requires … | July 12, 2010 | 53 comments |
The difference between ‘return false;’ and ‘e.preventDefault();’Have you ever seen those two things (in the title) being used in jQuery? Here is a simple example:
That code would append the href attribute as text to the body every time a … | July 8, 2010 | 31 comments |
CSS Media Queries & Using Available SpaceWe’ve covered using CSS media queries to assign different stylesheets depending on browser window size. In that example, we changed the layout of the entire page based on the space available. It isn’t required that we make such drastic … | July 6, 2010 | 37 comments |
CSS ContentCSS has a property called content. It can only be used with the pseudo elements :after and :before. It is written like a pseudo selector (with the colon), but it’s called a pseudo element because it’s not actually selecting anything … | July 5, 2010 | 59 comments |
Happy Fourth! | July 4, 2010 | 46 comments |
Five Questions with Jeff StarrI first knew of Jeff through his website Perishable Press, which has long been a fantastic web design resource blog focusing on CSS, WordPress, and a lot of hard-to-find-elsewhere .htaccess stuff along with a good amount of Jeff’s personality … | July 2, 2010 | 17 comments |
Illustrators I LikeIf there is one (non-superpower) skill I wish I could acquire without having to spend thousands of hours practicing, it’s illustration. I took a bunch of drawing in college but I was never that great and I’ve let myself go … | June 29, 2010 | 44 comments |