avatar

Andres Jaimes

How to install Wt (Witty) on Windows

Installing Wt can be a challenging task if you don’t have the right tools. I spent many days trying to make it work with MinGW and Visual Studio 2005. No luck. Here are some of my results:

MinGW

I was never able to make a full compile. It was …

Multi-Device Layout Patterns

Through fluid grids and media query adjustments, responsive design enables Web page layouts to adapt to a variety of screen sizes. As more designers embrace this technique, we’re not only seeing a lot of innovation but the emergence of clear patterns …

CSS – Attribute selectors

Attribute selectors allow you to select CSS elements based on their attributes or values.

For example, if you want to select an image named “great.gif” you can do it by using the following rule:

1img[src="great.gif"] { border: 3px solid #000; …