Photoshop-Inspired Techniques with 100% CSS

About The Author

The Smashing Editorial prepares bi-weekly newsletter issues with lots of love and appreciation for the good ol’ web with the latest tips and tricks for … More about The Smashing ↬

Email Newsletter

Weekly tips on front-end & UX.
Trusted by 200,000+ folks.

Since the beginning of CSS3, Web designers have begun experimenting with different code-based solutions to add to design, and even to make up a design entirely. Even with older versions of CSS there are many design solutions that can be done with 100% code, no images necessary.

In this article, we’re going to take a look at some design solutions that are now possible with CSS, whether it be with the new, more advanced CSS3 or with prior versions. Everything from small details to entire features can be created with CSS and a bit of markup, and it’s amazing to see the solutions created and advancements made in just the last few years.

Further Reading on SmashingMag:

Despite some of the interesting things we can do with CSS, how practical is it? We’ll also take into consideration the practicality of some of these uses, and whether they should just be for fun and experimentation, or perhaps someday a real part of Web design. It’s intriguing to think about what kind of imagery and Photoshop-inspired effects could soon be completely replaced with only code, and how this will affect the future of Web development.

Typography Effects

We’re beginning to see more design effects come to life with CSS, especially with the trend of beautiful typography. Using CSS to add to type is a fantastic use of CSS, replacing traditional means like images or just defaulting to a Web-based (and sometimes boring) font.

Inset (Letterpress) Type

Letterpress

This effect has been done by many of us before, in one form or another. When used in headings, quotes, or other forms of content meant to stand out, the result can be highly practical and beautiful. The tutorial on Line25 shares an efficient technique for this, with a few different design possibilities.

Text Rotation

Text at different angles can create unique design effects and also serve practical purposes. Once only available with the use of images, text can now be rotated to meet design needs. This is perfect for something like blog post dates, like in the example above, which would obviously be ever-changing and dynamic.

Custom Typography (@font-face)

@font-face

In Photoshop we can use any font we wish to design with, as long as it’s installed on our system. On the Web, that was not always possible. With CSS3’s new @font-face though, we’re beginning to see more interesting, design-complimenting fonts on the Web. @font-face makes it simple and purely CSS-based. However, sIFR and Cufón can also be used as a backup while we’re all still waiting for other non-compatible browsers to catch up. For more on all of these font replacement methods, take a look at our post, Review of Popular Web Font Embedding Services.

Using @font-face can make a world of difference in the outcome of a design, is incredibly easy to implement, and is great for SEO and maintenance purposes as well.

A good, detailed and easy tutorial to follow in case one does not have experience with using @font-face yet can be found over at Zen Elements: CSS3 Embedding @font-face. As an additional resource, Font Squirrel has an @font-face generator, along with plenty of quality free fonts to use.

Drop-Shadow Text

Text Shadow

Text shadow is a simple effect many of us are also already using. It’s a great effect to add some design detail, but also to help highlight text and add depth to a Web design. Quite simply, the code to create a CSS3 text shadow is as follows:

text-shadow: 1px 1px 0 #000;

The best part is that while regaining the use of variable text with drop-shadows, the code is only one line and easy to customize. For a more detailed post and a couple of examples, be sure to read through Meagan Fisher’s quick tutorial: Shadows and CSS3.

Gradients

Gradients were also once only possible when placed in images, but now there is a set of tricks that use either smarter imagery, or even image-free techniques to create the same design effects we’ve been using for years.

Pure CSS3 Gradients

CSS Gradients

CSS3 and WebKit also come with pure CSS gradients, which can allow for the creation of many Web elements that once required images. Above is a demo of a Pure CSS Menu created by Nick La, with the use of CSS gradients and other features like drop shadows and rounded corners.

There is also a tutorial to accomplish many of the above gradient looks: Cross-Browser CSS Gradient.

Gradient Over Text (Or Anything Else)

Text Gradient

While this effect does include some images, it is still a very good CSS example especially because it is compatible in most browsers, unlike many CSS3 tricks. With a small pattern or gradient, we can recreate any text, div, image or whatever with the pattern overlying it.

Fancy Borders

Borders around images and other block elements can be a fast, easy and effective way to add clean lines and detail to a Web design. There are a number of trends that have been used for years now, and even more possibilities are showing up with CSS3.

Borders

There are plenty of unique ideas that can be created with just CSS 2.1, and therefore would be compatible with far more browsers. It really just takes some creativity and out-of-the-box thinking. In the post, 12 Creative and Cool Uses for the CSS Border Property, many effects are mimicked with minimal markup and pure CSS. Some may not be entirely practical for the everyday image border, but many could be applied to other uses of CSS, like CSS posters or images (see below).

Then, with CSS3 we have more possibilities, and more border capabilities for common border styles. CSS3 introduced the use of border images, gradient borders, and of course, rounded corners. Other techniques using the box-shadow property can create interesting effects as well. For examples and quick snippits check out Design Shack’s Introduction to CSS3 - Part 2: Borders.

Bigger Techniques and Tutorials

Some design techniques accomplished with CSS can be small details, while others can make up an entire design. Below are some experiments or uses of bigger solutions done with CSS. If any imagery or JavaScript has been applied in the effects below, it is for additional detail or functionality. However, for all of these the primary focus is still 100% CSS.

Overlapping Ribbons

3D Ribbons

Again, with a mix of CSS3 and older CSS techniques, we can recreate a design feature that was once only possible with images. This design technique has long been used to add depth to a Web design and also to grab attention, by overlapping boundaries.

This tutorial works in just about every browser except for IE and some older versions of Opera. Despite this, the degraded version actually works well in its own respect, otherwise one can get the same look using imagery with an alternate stylesheet, and only be called when it encounters these browsers.

This effect works in: Chrome 4+, Firefox 3.5+, Safari 4+.

  • Does not work correctly in IE or Opera, yet degrades gracefully.

Detailed Polaroids

Polaroids

The “Polaroid look” for photos and other imagery on the Web has long been a trend, and leans more towards a retro style. Before, this look involved using a background Polaroid image, and placing the photo on top. As an alternative, a CSS 2.1 version was (and is still) possible with the use of padding and borders, but we can definitely make it even more interesting with the advances of CSS3!

This tutorial and effect above uses some more advanced and modern CSS tricks to bring more life into the Polaroid look. Chris Spooner’s How To Create a Pure CSS Polaroid Photo Gallery includes features like CSS drop-shadows, transformations and rotations, and even the classic z-index feature which has been around for a while, but doesn’t seem to be used often enough. All of these effects come together to create what looks like several custom-made Polaroid images, but the only true images used are the photos themselves.

This effect works in: Chrome 4+, Firefox 3.5+, Safari 4+.

  • Final transition effect added on hover does not work in Firefox yet.

3D Cube using 2D CSS transformations

3D Box CSS

In the old days of CSS, we were used to flat boxes on flat screens. However, with the newest release of WebKit, in many modern browsers we can use 3D transforms to create 3D boxes with regular text, padding, margins, borders, backgrounds, and more.

Be sure to check out the tutorial for a full explanation and a list of browsers that can currently render this effect correctly. Also, using WebKit animation, rotating cubes and other design and interactivity effects are possible without Flash or JavaScript. The best part about this technique is that the markup behind it is incredibly simple and semantic, and the CSS is fairly simple as well.

This effect works in: Chrome 4+, Firefox 3.5+, Safari 4+. (without transitions)

This effect works in: Chrome, Safari 4+. (with transitions)

Windows 7 Start Menu

Windows 7 CSS3

This is a complete recreation of a Windows 7 menu with CSS only. The practicality of the recreation may be controversial, but regardless, this tutorial shows how many CSS effects can be used to imitate many common design effects, and can put them intelligently into practice.

Be sure to check out the demo to get a full feel of what this tutorial does. All effects are done with pure CSS, with the exception of the icons.

This effect works in: Chrome, Firefox 3.6+, Safari.

  • Doesn’t work in IE or Opera, but degrades gracefully.

Mac Dock

Mac Dock

Along with the Windows 7 menu above, it’d only be fair to include a Mac Dock recreation as well. This tutorial uses images for the icons, and also for some of the background. In the end, it also uses a bit of jQuery to create a perfect effect, but the majority of it is done with CSS. Even when stripping out all of the additional imagery and scripting, we still come up with a great design solution with pure CSS.

This effect works in: Safari, Chrome, Opera, Firefox 3.7+

  • In IE and Firefox 3.6 and lower, it degrades nicely but doesn’t work completely because these browsers do not support transitions yet.

Speech Bubbles and Blockquotes

Speech Bubbles

CSS is nothing new to blockquotes, nor is it new to speech bubbles. However, Nicholas Gallagher decided to step it up a notch and create more design-oriented speech bubbles with pure CSS. Many effects work perfectly well with just CSS2.1, but include CSS3 techniques to enhance the effect.

The old alternative to this would have been to use background images in the shape of speech bubbles, and then struggle to use fixed positioning to fit text inside. Pure CSS speech bubbles and blockquotes allow for more flexibility when writing quotes, and at the same time, fewer images end up cluttering the Web server.

Be sure to take a look at the demo page to see all of the variety and examples available, and then head on over to the tutorial page for an exact how-to.

This effect works in: Firefox 3.5+, Safari 4+, Chrome 4+, Opera 10+, IE8+

Social Media Icons

Pure CSS Icons

As another experiment, many of the same techniques used for the speech bubbles above were used to create pure CSS social media icons. For this purpose, just using a small image rather than many lines of code would be far more practical, but again this is another experiment that shows the true power of CSS.

This effect works in: Firefox 3.5+, Safari 4+, Chrome 4+, Opera 10+, IE8+

Full CSS Designs

While the above section features design effects, below are some experiments that have created full designs from pure CSS. The first is an experiment done by Design Informer on CSS Posters. The experiment and techniques used here could actually end up becoming very useful in the rising trend of print-inspired layouts in Web design.

CSS Posters

There were also other CSS posters around the Web that were used as the inspiration for these designs:

HTML CSS Rotation

CSS Rotation

Laws of Robotics

Laws of Robotics

CSS3 Hooray!

CSS3 Hooray

Why Art?

Why Art?

All Human Beings are Born Free

All Human Beings are Born Free

Each of these designs use a variety of different CSS features and markup, but the creation process among them all is essentially the same. If interested, Chris Spooner wrote a tutorial on how to create a pure CSS poster, from design to final implementation: Create a Vibrant Digital Poster Design with CSS3.

How Practical Is It?

While many of these effects can be interesting, unique, and can put our coding practices into perspective, there is no doubt that many of these design solutions may be better served in the traditional way: with images. How practical is it to use pure CSS for many design effects? Does it save server space, make pages load faster, and is the time put in (or time saved, depending on which effect is applied) worth the desired effect(s) in the end?

Many of the above techniques were created as examples and as an experiment to test the boundaries of CSS technology. That’s all fine and well, but at the same time many of these effects are being recreated around the Web, and are being put to real, live use. Faruk Ates wrote an interesting article concerning this, entitled Pure CSS Icons: Make The Madness Stop:

“People have been making things out of pure CSS for a long time now, and until recently that was a harmless exercise in pushing the limits of the technology whilst occasionally coming across production-friendly techniques and creations. It was something I wholeheartedly stood behind, because—again, until recently—the people making those things knew where to draw the line between “experimental technology demo” and “production-friendly technique or implementation.”

"How usable are these snippets of CSS and markup, really? Is it easy to plug them into your website as you’re designing it? No. Is it easy to plug them into your website as you’re developing it? No. Is it easy to adjust them once they have been integrated into your website? No, no, no!"

— Faruk Ates, Pure CSS Icons: Make The Madness Stop

The main message here is to use CSS design effects responsibly and effectively. In the end, CSS3 and prior versions can remake some of our most commonly used design features without imagery, and do it more effectively than how we were doing it before. Simple things like drop-shadows, gradients and more can all be considered good uses if it enhances a design, and if an excessive amount of code is not required. In other situations as well, such as the blockquote and speech bubble example above, CSS is put to good use by helping to make speech bubbles more usable.

There are many more practical and smart uses of CSS, but in the end we must take some of the following into consideration:

  • Browser compatibility: Does the created design effect depend solely on CSS effects that may not be correctly viewed in many browsers? If so, make sure alternate stylesheets are available and that JavaScript solutions can step in if need be, or it may be best to just use traditional means. Pure CSS isn’t the solution to all design features, even if it’s technically possible.
  • Semantic markup/CSS and code length: Is the resulting code semantic and practical to use over the use of a few images? In some solutions we can see that it takes far too much code, or far too confusing code, and would therefore end up being less efficient than just using images.
  • Maintenance: Sometimes CSS-based design solutions can make maintenance easier compared to constantly altering images, but in other cases, it can make it far more difficult. How easy is it to change a small detail or content contained within the design effect?

Pure CSS designs and CSS design effects can be interesting solutions, but not always practical solutions. Also, some CSS design effects may be more practical in certain situations than in others. It can all just depend on the implementation of the effect, and when and where it is used.

Conclusion

There is no doubt that a wide variety of design techniques, once only possible with Photoshop or some other design program, can now be done in only code. In some situations, these solutions can be great for practice but highly inefficient when it comes to using images vs. code. In other cases, it may be more efficient to use CSS and markup to create a lot of effects. Especially with some of CSS3’s common features like drop-shadows, opacity, and more, many “detail images” on the Web can now begin to be replaced.

Feel free to share thoughts on which of these solutions seem practical, and which do not. Some uses may need to wait for better browser compatibility, and others may never be practical, but may be good practice nonetheless.

Further Resources