Just when you thought you’d seen all the cool features of HTML5, I’m here to bring you yet another one. The internet is no longer about just websites; it’s about web applications. Often, our users are on portable or mobile devices, and they won’t always have access to a network. With HTML5’s Application Cache, you [...]
More: continued here
Posted by
admin
|
No Comments »
Zebra-striping rows and columns with the nth-of-type selector.
More: continued here
Posted by
admin
|
No Comments »
Everybody wants to use CSS 3 now that even Internet Explorer will support parts of it once IE 9 is out. But since parts of CSS 3 are still subject to change, most browsers use a vendor prefix for many CSS 3 properties to signal that their implemenation is “experimental” and may change in a later version of the browser.
This means that for a property like border-radius to work cross-browser you need to specify it several times with different vendor prefixes, like this:
.box {
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
}
Read full post
Posted in Browsers, CSS.



More: continued here
Posted by
admin
|
No Comments »
Using PHP-generated CSS, you can abstract your multi-line CSS3 stuff into just one line of maintainable code.
More: continued here
Posted by
admin
|
No Comments »
Recently, I have just finished another website. During the development, I have to write fair a bit of javascript to implement the form, and I discovered these plugins and I pretty sure it will come in handy to all of you.
More: continued here
Posted by
admin
|
No Comments »
Title tags often get overlooked by web developers. That’s a shame as they are crucial for both search rankings and users seeing search results. Here is the ultimate title tag optimization list to fix them.
More: continued here
Posted by
admin
|
No Comments »
In today’s video quick tip, we’ll be reviewing JavaScript’ logical AND operator. Those of you who are just beginning to get into JavaScript, or even a library like jQuery, might not realize that they can even be used as micro if statements! Subscribe to our YouTube page to watch all of the video tutorials! Example [...]
More: continued here
Posted by
admin
|
No Comments »
A comprehensive discussion of how to use CSS counters, including an infographic and details on browser support, benefits and potential drawbacks.
More: continued here
Posted by
admin
|
No Comments »
The most obvious job for a web designer is working for a web design agency, but if you’ve never done that before… then how do you know what to expect? Is it even the right path for you?
Setting foot in an agency for the first time can be daunting. It’s filled with people who [...]
More: continued here
Posted by
admin
|
No Comments »
Many sites provide an array of methods to interact with their offerings, but excesses in decision-making pressure can render less empowered visitors into a cyclone of stress from the barrage of questions being asked.
More: continued here
Posted by
admin
|
No Comments »