Web Tart

responsive design

Instead of attempting to target niche audience with a seperate site optimised for mobile, TV, or print media, use CSS3 media queries to adapt the output according to the users screen width. For example:


@media screen and (max-width: 1024px) {
#wrapper {
margin: 0 auto;
width: 95%;
}