50 New CSS Techniques For Your Next Web Design
CSS is almost certainly one of the best developments in web design since the first graphical web browsers were adopted on a wide scale. Where tables created clunky, slow-loading pages, CSS created much more streamlined and usable web pages. Plus, CSS has allowed designers to achieve a number of different styles that used to only be possible with images.
One of the best parts of CSS is that it’s so simple once you know the basics. Where tables used to make incredibly complex and sometimes impossible-to-decipher code, CSS keeps things clean and simple. Add a few comments to keep everything organized and it becomes an absolute dream to work with.
Below are 50 fresh CSS tricks, techniques and tutorials that will help you to improve the quality of your next web design. Be sure to check out our previous article: 53 CSS-Techniques You Couldn’t Live Without.
1. Security and Performance
While CSS is often thought of as merely a styling language, there are ways you can use it to add security to your site. There are also ways you can optimize your CSS to improve page load times. Both are discussed below.
Make your pages load faster by combining and compressing javascript and css files
This tutorial shows you how to create a PHP script to compress and combine multiple CSS and/or JavaScript files with gzip when they’re called for by a browser. It speeds up the page load times while making it possible to still edit the individual CSS or JavaScript files without having to combine and re-compress everything each times.
Informal testing showed that a group of JavaScript files were reduced from 168Kb (and 1905 ms to transfer) to 37Kb (and 400 ms). There wasn’t any data available for the effect it had on CSS files, but I’d guess it’s probably pretty similar.
The Definitive Post on Gzipping Your CSS
This post covers the best and most recent methods for using GZIP to compress your CSS. It currently covers two different methods, both equally effective. One involves adding a bit of PHP to your CSS file (and renaming the file with a PHP extension instead of CSS) while the other method involves using the same PHP code with some additions but in a separate file.
Clickjane.css: A CSS User Style Sheet to Help Detect and Avoid Clickjacking Attacks
This post covers how to use clickjane.css to prevent clickjacking, a class of security vulnerabilities kind of like phishing scams and more formally referred to as user interface redressing. It’s cross-browser compatible but, admittedly, probably only covers a small range of potential clickjacking vulnerabilities. It’s still a good place to start, though.
5 Step Style Sheet Weight Loss Program
This post shows five different ways to trim the size of your style sheets. Techniques range from learning how to group selectors to using CSS shorthand. Each technique is thoroughly explained and includes related resources.
2. Page Layout
This is what CSS was built for. The options are almost endless, especially as CSS3 becomes the new standard.
Aligning Inline Images with the Vertical-Align Property
The default vertical alignment for inline images in text sometimes looks not-so-great. This tutorial shows you how to better align inline images with your site’s type. It goes over the different types of vertical alignment and what they mean in relation to type.
CSS Centering
This post includes instructions for centering liquid layouts with CSS. It’s very simple and straight-forward and works in virtually all browsers. Basically, it just uses left and right margins combined with some additional code to make it cross-browser compatible.
Making Your Footer Stay Put with CSS
Keeping footers at the bottom of your pages can be a real hassle with CSS, depending on how the rest of your page is set up. This tutorial shows exactly how to keep your footer where it should be—below the rest of your content! It’s a very thorough post, with complete, step-by-step instructions.
Vertical Centering with CSS
This post covers five excellent ways to center your content vertically. It includes the good and bad for each method along with complete instructions for implementing them. The methods range from using divs that act like tables to using absolute positions.
Handy Tips for Creating a Print CSS Stylesheet
This post is filled with great tips for creating better print stylesheets. It includes instructions for everything from including link destinations after the link text to splitting comments onto a new page. Pick and choose from the techniques offered or copy the whole stylesheet.
Fluid Images
Fluid layouts are great. They generally look and function just fine until you start introducing fixed-width elements within them—like images. This post shows how to make your images fluid, too. And it works for most embedded video. And while the basic technique includes just one CSS property, there is a workaround necessary to make it work on Windows machines.
Flexible Equal Height Columns
This tutorial shows how to create completely versatile equal height columns using valid and semantic markup. It’s cross-browser compatible and works with both fixed, fluid, and even elastic designs. It’s a very complete tutorial but not at all complicated.
CSS Columns with Borders
This is a technique for creating equal-height columns with CSS that have borders. It uses a series of nested divs to achieve the effect instead of images. The end result is fantastic.
Creating a Polaroid Photo Viewer with CSS3 and jQuery
The photo gallery created with this technique is absolutely awesome. The HTML and CSS aren’t super-complicated, and everything is explained really well. While CSS3 isn’t supported by every browser, this does appear to degrade gracefully, making it perfectly fine to use as long as you don’t mind some visitors not getting the full effect.
A Killer Collection of Global CSS Reset Styles
An incredibly complete collection of global resets, this post covers pretty much every reset you could possibly need. Some are short and sweet, consisting of only a couple of properties, while others are very complete and reset everything you might consider resetting.
Making Module Layout Systems
This tutorial gives complete instructions for creating modular layout systems using CSS. This makes it practical to use different grid-based divs as needed for individual content elements. The end result provides tons of flexibility for dealing with everything from images to text while keeping everything uniform and balanced.
Multiple Backgrounds (CSS3)
This tutorial shows how to implement multiple backgrounds using CSS3. It’s currently only supported by Safari, but the tutorial includes tricks to make it work in non-supported browsers. Currently, it doesn’t validate, but once the CSS3 standard is completed it’s likely it will.
CSS3 Multiple Columns
Here’s a tutorial for creating multi-column layouts with CSS3. The CSS is pretty simple and straight-forward, much easier than most current solutions to multi-column layouts. Unfortunately, this only works with Firefox, Safari and Chrome at the moment.
Smart Columns with CSS and jQuery
This tutorial shows how to create smart columns inside liquid layouts using a combination of CSS and jQuery. Basically, it fits as many columns into the base column size as possible and then distributes any leftover white space among the columns there. A very elegant solution if you want to allow for a variable number of columns without ending up with a bunch of leftover white space in your design.
CSS Hack for Chrome, Safari and Internet Explorer
This tutorial shows how to apply different style sheets based on the browser your visitors are using (at least in IE5-8, Google Chrome, and Safari 1-4). A very valuable technique if you want to use styles only supported in certain browsers without making your site look bad in unsupported browsers.
3. Menu and Navigation Customizations
Menu and navigation styles can really set your site apart if done well. Just remember, menus need to remain usable and functional no matter how they look.
Overlap That Menu!
Have you ever wanted to create menu items that overlap? This relatively-simple tutorial shows you how to do just that using unique classes for your menu items. It also tells how to reorder the navigation items using the z-index. It’s a nice effect that isn’t difficult to achieve.
Super Awesome Buttons with CSS3 and RGBA
With a little CSS3 magic, you can created a scalable set of sexy buttons with nearly half the CSS it would have taken with hex colors. Give it a go in your next project and see how it can help add that extra polish you want without huge impact on your code.
Custom Buttons 3.0
This page shows a variety of rounded-corner (1px radius) buttons that don’t use images (other than for the optional background gradient). Just look at the source code for the page to see how it’s done.
Centered Tabs with CSS
This tutorial provides an alternative to the sliding doors method of creating tabs in CSS that allows tabs to be centered instead of only right- or left-aligned. It’s a multi-step tutorial but isn’t complicated.
Styling the Button Element with CSS Sliding Doors
An updated tutorial on sliding doors buttons that now includes creating them with CSS image sprites. It’s also been simplified to work with a single block of CSS in all the major browsers (including IE 6-8). The markup is simple and straight-forward and the end result is perfect.
Styling Buttons to Look Like Links
Sometimes you have to use a button (like with forms), but realize your design would look so much better with just a simple text link. This tutorial gives a complete overview of how to make your buttons look like text links using CSS.
Simple, Scalable CSS Based Breadcrumbs
Breadcrumbs can be a great addition to your site’s navigation and can really improve your site’s usability. This tutorial shows you how to create breadcrumbs with CSS. The code used is simple (the HTML portion is just an unordered list) and there are only six CSS styles defined.
Recreating the Button
This article covers how to make a button that look very similar to regular HTML input buttons but can handle multiple types of interaction (like dropdowns or toggle functions). These buttons were originally developed at Google and are skinnable with just a few lines of CSS. The buttons created are entirely CSS-based, including the gradient background.
List of 10+ Usability-Conscious Link Styles
This page offers a good overview of different effects you can use for links, including color and underline, backgrounds, and animations. It’s a good starting place if you’re trying to figure out exactly how your links should look and act to make them more user-friendly.
Create Vimeo-Like Top Navigation
Here’s a tutorial to create a drop-down top navigation bar similar to the one Vimeo.com uses. It’s all done with images, CSS and HTML and isn’t particularly difficult, though it is a bit complex. It’s explained really well, with images illustrating the structure and very well-written CSS.
Beautifully Horizontal Centered Menus/Tabs/List
This tutorial explains how to create cross-browser compatible, centered menus or other items in CSS with no hacks and no JavaScript It’s compatible with liquid layouts, too. Not only does it give the code to achieve the effect, but it also fully explains exactly how and why it works.
4. Typography
Here are a few tutorials and tricks for creating advanced typographic styles using CSS. There’s everything from line-wrap functions to faux anti-aliasing to adding gradients and shadows.
Wrapping Text Inside Pre Tags
This tutorial shows how to wrap text within pre html tags. It’s useful for displaying code on your site, especially when lines of code are quite long and end up breaking your site’s layout (especially in IE). It’s a relatively simple and there are a few different options presented.
Make Cool and Clever Text Effects with CSS Text-Shadow
Creating text effects without the use of images is a big advantage in terms of both file size and the time required for maintenance. This tutorial shows how to take advantage of the text-shadow property in CSS to style your text. While this effect doesn’t work in IE, it does in most other browsers. And it looks incredibly cool if done well (I’m a big fan of the “milky text” example).
Safari’s Text-Shadowing Anti-Aliasing CSS Hack
This tutorial shows how to use the text-shadow CSS property to create an anti-aliasing effect on your text. It only works in browsers that support text-shadow (so not IE), but the look is pretty awesome. It can definitely make text more readable, just don’t overdo it or you end up with text that’s blurry.
Safari’s Text-Shadowing Anti-Aliasing CSS Hack Revision
This is a revised version of the technique above to create a slightly different anti-aliasing effect, especially useful for light text on dark backgrounds. It uses an extremely transparent black background to force Safari to render the text more legibly.
Snazzy Pullquotes for Your Blog
If you have a blog or other site that’s text-heavy, using pull quotes to highlight important bits can look really awesome while also making your content more scannable. This tutorial shows how to format those pull quotes with CSS. It shows how to create both left and right aligned pull quotes while also preserving your regular blockquote style.
Codename Rainbows
Here’s a technique for creating two-color gradients for text using a combination of JavaScript and CSS. It also works to apply shadows and highlights to text. The possibilities for the use of this technique are pretty endless. Of course, this is also one of those things where a little bit goes a long way (ie, limit gradients to your headers, titles, and other text you want to stand out—not your site’s body copy).
Build Better CSS Font Stacks
This article gives some great guidelines for creating better CSS font stacks. It includes information on the most common font stacks currently used and then goes on to cover Tuck’s Definitive Font Stacks and Ford’s Better Font Stacks. It’s a great resource when you’re determining a site’s typography, with the information presented in a very scannable, well-organized format.
CSS3 Embedding a Font Face
Here’s a great tutorial on how to embed fonts using CSS3. While it’s still not widely supported, this technique makes it much easier to embed special fonts into a site without having to resort to images.
CSS Gradient Text Effect
This little trick makes it easy to create gradient text by applying a 1 pixel gradient PNG to it. It’s a quick and easy way to create gradient text pretty much anywhere on your site. There’s even a fix to make it work in IE6 included.
5. Other Cool Techniques, Tips, and Tricks
Below are a ton of other techniques and tricks you can use to really make your CSS stand out.
3D Cube Using CSS Transformations
This is probably one of the coolest CSS techniques I’ve seen. This tutorial shows how to build a 3D cube with text or other content on each side of the cube. It does it entirely with CSS; there’s no canvas, SVG, imagery, or JavaScript. There’s even instructions for creating multiple shaded cubes on a single page. The only real drawback is that it’s only supported in recent WebKit and Gecko browsers.
Nine Ways to Obfuscate E-mail addresses compared
This article gives two different methods for obfuscating email addresses with CSS. One involves using the display:none attribute while the other involves reversing the code. Both supposedly cut the amount of spam received to zero.
Forms Markup and CSS – Revisited
Here is a CSS template for form styling. The markup of the form is based on the Accessible Forms Markup from Derek Featherstone. The template is semantically correct, flexible and accessible.
iPhone CSS
A very short and simple tutorial on how to make certain elements of you CSS render differently on the iPhone. It’s surprisingly simple and easy to implement.
Improving Your Process: Faster Front End Development
While this post offers plenty of information on things other than CSS, it also offers some great advice for improving your efficiency with CSS: mainly, write your CSS in blocks. This technique is usually done progressively as you get used to coding in this manner. The steps are simple, though, and it’s sure to make you a much faster designer.
Image-Free CSS Tooltip Pointers – A Use for Polygonal CSS?
This tutorial explains how to create triangles (to be used for pointers) using CSS, without the need for any images. The end result is great, though it only works for single-color images. The CSS used is incredibly simple while still being really versatile. You can create a triangle of almost any size using just a single div.
How I Implemented My Cookie-Based Switcher
While not strictly a CSS trick, this post shows how to create a cookie-based CSS theme switcher for WordPress. It allows users to choose to use a different theme when they visit the blog while allowing new users to see a nice, simple, easy-to-read theme that puts the primary focus on the content.
CSS Swap Hover Effect
This great technique will replace any image with another image when you hover over it. The tutorial shows it applied to a portfolio site, but the possibilities are endless. It’s very slick and cross-browser compatible (though IE6 does require a bit of a workaround, as usual).
CSS Stacked Bar Graphs
Here’s a tutorial for creating stacked bar graphs using CSS and some images. It’s a pretty in-depth process, but the result looks fantastic.
Changing HTML Images on Hover / A Quick CSS Trick
Here’s a quick and easy CSS technique for swapping out images on hover. It’s pure CSS, no JavaScript required. The biggest issue this technique solves is that when the page is printed, the base image is the only one that shows up.
10 Properties that Were Impossible to Implement in IE6
This collection of CSS tricks shows how to implement a number of styles that were supposedly impossible in Internet Explorer 6. It includes tricks for opacity, fixed positions, and text shadow, among others.
10 Challenging But Awesome CSS Techniques
Sometimes the coolest things just take a bit more effort. This collection of tutorials covers ten different CSS techniques that aren’t exactly easy to achieve, but the end results are well worth the extra effort. Techniques include pull quotes, dynamic variables, and style changes based on the time of day or even the weather, among other awesome examples.
Further Resources
- CSS3 Exciting Functions and Features: 30+ Useful Tutorials from Noupe
Covers more than 30 new features and functions CSS3 is capable of. - A Harsh CSS Environment for Testing Widgets
This stylesheet creates an incredibly harsh environment for testing your widgets. If it looks okay here, it will likely look okay anywhere. - 24 CSS (in some cases with jQuery) Navigation and Menu Tutorials
A huge list of awesome navigation and menu examples, with links to the tutorials. - 15 CSS Tricks That Must Be Learned
Covers a variety of techniques, from fixing PNG transparency in IE6 to using CSS to fight spam.






















































Laurence
July 20th, 2009 12:53 amNice list!
aravind
July 20th, 2009 12:56 amGreat resources..
iPhone CSS tutorial is something I was really looking for..
Thanks SM!
Łukasz Adamczuk
July 20th, 2009 1:04 amSome of them are really usefull.
stoimen
July 20th, 2009 1:06 amVery nice! Thanks.
Emil
July 20th, 2009 1:08 amnice. bookmarked
Chris Green
July 20th, 2009 1:12 amAmazing. How do you guys get so much content rammed into 1 blog post. You really are putting a lot of design blogs to shame now.
Dainis Graveris
July 20th, 2009 1:12 amamazing, just amazing..such huge post..:)
Radeksonic
July 20th, 2009 1:27 amWow thanx. Some of those techniques are very useful.
Jonny Pioww
July 20th, 2009 1:37 amThat’s a hugely extensive list. Excellent post and a lot of new things in there.
MaTYO
July 20th, 2009 1:42 amAwesome post! great collection of extremely usefull css techniques!
joão
July 20th, 2009 1:47 amone of the best articles I’ve seen here.
definitely going to add this to delicious ;)
Joel Vardy
July 20th, 2009 1:51 amThanks SM
the “Build Better CSS Font Stacks” was just what I needed!
Phoenixheart
July 20th, 2009 1:51 amI definitely love CSS 3, but as it’s only (and partially) supported by FF3.5+, Chrome and Safari (for now), I would consider sticking with CSS 2 a wise decision.
Wazdesign
July 20th, 2009 1:58 amThis is really cool collection of the CSS tricks
NotAlame
July 20th, 2009 2:00 amvery useful list!
Thanks a lot!
sobstel
July 20th, 2009 2:03 amDo not use PHP to output CSS. It’s a serious overhead and it will kill your server sooner or later. Generate them beforehand and always serve them static.
gideon
July 20th, 2009 2:21 amGreat post. So many interesting things.
nukturnal
July 20th, 2009 2:52 amSimply amazing. There few things here i never knew about. lots of thanks for his post. cheers!
Dhaval Shah
July 20th, 2009 3:11 amReally great stuff !!! thanks a ton for this !! I love smashing !!
Tim.
July 20th, 2009 3:18 amVery, very informative. I enjoyed reading it very much and a big thanks to smashing for putting this up
Riccardo
July 20th, 2009 3:33 amThat’s a really useful collection of tips, thanks Cameron.
Jµ
July 20th, 2009 3:36 amThanks for sharing Cameron. Usefull tips…!
commonov
July 20th, 2009 4:31 amI will always look site like this I very love it and I will put this ideas to my joomla site soon. Thanks so much.
shravan mishra
July 20th, 2009 4:51 amAwesome post. very informative.
CSS Tutorials For Beginners
Ed
July 20th, 2009 4:52 amGreat job – I give this 5 cowbells…
Nikesh Ponnen
July 20th, 2009 5:00 amThank u Smaasheee….
Awesome post….
not2comply
July 20th, 2009 5:27 amWow…. these stuff are helpful
thanks for smashin’ it in one post.
Timbronze
July 20th, 2009 5:28 amVery good, will be having a try when I have a little time. Cheers
romberto
July 20th, 2009 5:44 amWow, Pure gold! Thanx guys!
Flauwy
July 20th, 2009 5:50 amExcellent overview. :)
Sapphiro
July 20th, 2009 6:35 amThanks, this is definitely very useful for me as a freelance xhtml/css coder.
Bookmarked this page.. I love it! =D
Gopal Raju
July 20th, 2009 6:42 amThanks for including mine
Gopal Raju
productivedreams
George Egonut
July 20th, 2009 7:04 amExcellent list. There’s some really useful articles here, particularly the email obfuscation comparisons and the two-color gradients.
gamma-normids
July 20th, 2009 7:12 amThanks a lot, although now I feel I want to try them ALL…!
Joel Stransky
July 20th, 2009 7:15 amEasily one of the best CSS posts ever.
Benjamin
July 20th, 2009 7:24 amConcerning css shorthands and compression: Do you know of any tool that optimizes css by regrouping the selectors and automatically transforming long expressions into their shorthand equivalents, and eliminating those values, which already would have the same value via inheritation, etc. A tool which compresses CSS not by only eliminating whitespace and semicolons, but actually rewriting the css?
Phillipe Calmet
July 20th, 2009 7:50 amThis is definitely a great resource list. Thanks for sharing it. :D
Carrie
July 20th, 2009 8:05 amgreat resource, thank you!
Ryan
July 20th, 2009 8:50 amwow fantastic stuff. gonna keep me busy, thats for sure
Matt Lindley
July 20th, 2009 9:23 amOn the multiple backgrounds tutorial – you mention that some workarounds are mentioned for browsers that do not currently support the property. However, when I go to that site, I do not see any workarounds. Just an FYI.
A Website Designer
July 20th, 2009 10:02 amGreat to see a Smashing Mag article covering CSS again. I feel people do not understand the importance of CSS. With the addition of new CSS techniques it is inhteresting to see how different website designers have implemented the changes.
Egor
July 20th, 2009 10:13 amNeat collection here, but hardly ‘new’…
Bimal
July 20th, 2009 10:53 amAwesome Post.
Great Work !!!
RCKY
July 20th, 2009 11:20 amCSS3 … causing more problems than bringing benefits at the moment… doesnt it?
Analise Smith
July 20th, 2009 11:25 amWhat I don’t understand is examples like the css bar graph. Why not just use an image? This is a serious question
Tom
July 20th, 2009 12:06 pmTalk about Christmas in July! Thanks, SM!
Raphael
July 20th, 2009 12:30 pmThat’s great!
I need more time to study this and test lot things. Time to study, it’s all about that… =(
Facundo
July 20th, 2009 12:41 pmthis article makes sm be the best
Scott Moe
July 20th, 2009 2:41 pmVery cool. So much for my _spare_ time this week.
CopperBot
July 20th, 2009 3:06 pmGreat collection of tips! Lot’s of good stuff in there!
Oliver
July 20th, 2009 4:08 pmnice list. i been searching for this for a long period of time. great help. t.y.
Sam Frysteen
July 20th, 2009 5:17 pmWell… there goes the rest of my day… brilliant stuff… thanks
sajja
July 20th, 2009 7:30 pmBrilliant!!!!!
mylove1412
July 20th, 2009 9:30 pmreally awesome =) nice post
Vailancio
July 20th, 2009 10:27 pmWow !
This is what I was looking for….
Oliver
July 20th, 2009 11:51 pmHey, css3 rocks the house. Thas fo’ sure! But … can I really develop a Website with CSS3 by now?
Nick
July 21st, 2009 3:04 amthis is the most valuable post i’ve ever seen for css. all the things i’ve always wondered how to do are in here… thanks a lot!
Jorg
July 21st, 2009 3:25 amDude! Really nice post, awesome stuff to look at, thanks :)
Aline
July 21st, 2009 5:07 amThis will be very useful !
Thanks a lot :)
Rick
July 21st, 2009 9:53 amWow very nice round up! thanks
Nijiko
July 21st, 2009 1:17 pmCss Rounded Corner Code Generator
kamal
July 21st, 2009 7:42 pmGreat technique…more knowledge for my CSS technique..Awsome..!!! keep up the good work
Tracey
July 21st, 2009 8:09 pmOh my! What a useful resource. Thanks so much.
Ardhian Satrya
July 21st, 2009 8:09 pmWow! What a crazy list! Thanks a lot :)
Webstandard-Team
July 21st, 2009 11:18 pmNice collection, but “new techniques”? They are all known.
Ashely Adams : Sticker Printing
July 21st, 2009 11:32 pmThanks Cameron, it’s a nice list! I really found some of them very useful. I think I should try the CSS Gradient Text Effect, although I am not much into web designing. These CSS techniques will help the web designers to implement various creative and unique changes and are sure to grab the attention.
Fritsie
July 22nd, 2009 12:57 amWicked collection! Thanks a lot.
Puneet
July 22nd, 2009 3:14 amWonderful list!
Dzinepress
July 22nd, 2009 5:07 amreally helping article. thanks
Kevin Althaus
July 22nd, 2009 4:35 pmThank you for this! Bookmarked to review later!
v-render
July 22nd, 2009 9:19 pmwonderfull collection .. thanks for sharing .. go to learn a lot !
Podluzny
July 23rd, 2009 12:59 amEven managed to use the Polaroid Photo Viewer for Friends of the site. Thank you.
sonichtml
July 23rd, 2009 6:32 pmvery nice~~~
Craig
July 23rd, 2009 10:58 pm“A Killer Collection of Global CSS Reset Styles” is the worst possible suggestion you can make when it comes to CSS resets. the * { } selector has long been recognised as slow, plus it is less precise and lacks the control you need as a designer.
If you need a reset, I’d suggest Eric Meyer’s reset instead.
Jaspal Singh
July 24th, 2009 9:12 amReally helpful css techniques.
Thanks for sharing.
.
Frederick Luna
July 24th, 2009 1:36 pmnice article
Mehrdad Nassiri
July 26th, 2009 11:38 amVery useful article,
thank you,
Jonas
August 10th, 2009 11:01 pmThis is probably one of the best submissions I’ve read on Smashing. HIghly useful in a number of situations, thanks a lot!
young
August 16th, 2009 5:52 pmso wonderful!
thank you!
jeux ps2
September 25th, 2009 1:33 amAwesome collection here. It is really very useful. Thanks for sharing such nice information here. It will be useful for iphone css tutorial. I like this site and it is nice to post here.
jeux ps2
pritesh pure
October 8th, 2009 1:17 amVery very nice tricks
hui gui
October 18th, 2009 6:26 pmThanks for sharing..
Sumeet Chawla
October 28th, 2009 6:09 amAwesome CSS resource collection… It has almost everything to fine tune one’s CSS skills… Great Job!
Matthew Simmons
October 30th, 2009 7:52 pmGood read. I’m not sure I’m ready to use CSS3 and HTML5. It doesn’t seem to me like they are supported by enough browsers to bother with. Soon though…
James
November 16th, 2009 8:17 pmIt’s great! I really want to improve my CSS skill!
Sonny
December 16th, 2009 12:41 pm~ bookmarked ;)
abbas
December 24th, 2009 11:25 amya … this good css tutorial ..
thank for helping
and have more creativity
rigel
January 6th, 2010 6:48 amGood post! I specially found the embedding of ttf fonts to be helpful! I tested it on FF 3.5/ IE7/IE8 and will be using it on a project.
sumera
January 26th, 2010 3:25 amGreat post. very nice tutorials.
Ralph
January 28th, 2010 2:09 amWow… that is a damn fine list.
Satish Borkar
April 19th, 2010 2:49 amHey!!
I found this litle late but still it is very nice post
thanks for sharing
Cheers
Satish
vijay Nemade
May 16th, 2010 9:17 pmApril 19th, 2010 2:49 am
It’s great!
JavaScriptBank
May 28th, 2010 5:22 pmthat’s all cool & great css techniques, thank you very much for sharing.
Can you give me favor to share this post on my JavaScript library?
Awaiting your response. Thank
waqas khan
June 25th, 2010 2:32 amNice collection. Learned a lot
Mark
July 2nd, 2010 12:18 amthat’s cool & useful css techniques, nice to read your your blog thanks for sharing. Could you give me favor to share some basic CSS coding?
Awaiting your response.
JayKhatri
July 29th, 2010 12:39 amGreat List, bookmarked for use in several projects.
Posicionamiento
August 30th, 2010 1:51 pmDude! Really nice post, awesome stuff to look at, thanks :)
Giselle
September 3rd, 2010 12:07 pmWhy haven’t I seen this before? -_-
THANKS! *bookmarks*
Ramesh Vishwakarma
September 20th, 2010 4:25 amnice…
Brett Widmann
October 22nd, 2010 4:09 pmThere are a lot of really nice techniques here. Thanks for sharing so many quality resources.
shurdul
December 2nd, 2010 1:58 amThanks for sharing dear buddy keep it up and say all is well.
cna certification
Prakash
January 13th, 2011 4:16 amGreat Collection of Css techniques. Thanks for sharing… keep it up
IWT
January 20th, 2011 1:57 amThanks for posting such a great list of CSS techniques.
Allan
December 14th, 2011 8:26 amThanks for sharing. I will be using some of the tips in my future projects
Mike Fitzpatrick
August 3rd, 2012 6:56 amThere are some pretty neat ideas on the website http://www.jeyjoo.com
They make use diagonal lines and slanted texts. Simple, but not seen very often, which makes the website stand out.