• Archives

    » CSS
May
13

Jumping page content

You are likely aware of the page-centering technique of adding auto left and right margins to an outer div:

1
2
3
#some_div {
margin: 0 auto;
}

One of the issues of this is that when used on websites with multiple pages, the layout can appear to “jump” a little bit when going back [...]

Feb
10

Browser detection using jQuery

Browser sniffing is messy. There are a million ways to do it but none of them are particularly clean and most involve conditional statements such as “” for IE and various other CSS selector hacks for other browsers.
It get around this common issue i am now using jQuery to add a class to my body [...]

Nov
10

CSS 3 talk – Rounded corners

So the last few years have brought amazing things, with the standards movement and getting companies to pay attention to the importance of following standards. In that time, I have seen over five big changes in PHP, three great changes in rails and only one in CSS. Why are we not seeing css3? Why does [...]

Oct
23

Web User Controls

Using the user controls may be one of the best moves you will make when developing an application in .NET. The user control will allow you to separate your reusable logic and keep it in one place. For many developers this is a great thing! Many of us have to re-create items over and over, [...]