More Web Design Tutorials

CSS

Top 3 Code Teaching and Learning Tips

April 14, 2016

SQL code training badge

To get the best outcomes with students (and yourself!), here are my top 3 code teaching tips:

1- Write real code, not ‘lego’ code.
2- Use real coding tools, not code simulators.
3- Build real projects from start to finish.

1. Write real code, not ‘lego’ code

A funny thing happens when students write real code: they start to learn not only how to code, but they learn the concepts behind the code. What I’ve seen over the years is that trying to hide the code from students with block based code teaching tools slows the learning process.

You have to write code to learn to code.

read more


Understanding code is just the beginning of learning web design or programming.

January 20, 2014

Learning to code has all kinds of benefits … even for those who don’t necessarily plan on becoming full time nerds: Builds analytical skills Trains your brain to think in a logical way Teaches organizational skills That said, when it comes to actual web design or programming, the recent awareness of the importance of code …

read more


CSS3 – Word Wrap

January 19, 2013

The word-wrap property is supported by all major browsers – and IE. There may not be a huge need for this feature in the English language, there aren’t too many overly long words, but then, it also depends on the size of the container.

read more


CSS3 – Text Shadow

January 19, 2013

Text Shadow is another fun little CSS3 feature that makes things so much easier – for most of us, anyway. There’s bad news for IE users: Text shadow feature is NOT supported by any version of Internet Explorer at this time.

read more


CSS3 – Transforms – 2D

December 28, 2012

Transform is yet another cool, new toy for our webdesign toy chest. Gone are the days of having to use a graphics editor to create certain effects. Now we can turn, spin, stretch, scale, and move things around with the CSS ‘transform’ property alone.

read more


Styling Lists with CSS

March 22, 2011

We’ve already discussed navigation lists and list bullet images, but sometimes, a list is just a list. There are two types – the ordered list and the unordered list. The ordered list counts the items; the unordered list marks the individual items with bullets or other markers. The HTML is simple.

read more


Adding Multiple Background Images

March 22, 2011

At times, it makes more sense to use background images than to insert them directly into the page. And while each element – like your body tag – can hold only one background image, they can be applied to several elements.

read more