Thursday, September 25, 2008

Google's 10th Birthday

You can see 10 years time line of Google on http://www.google.co.in/tenthbirthday/#start
It shows the growth of the Google from the beginning.

Tuesday, September 23, 2008

Border-radius: create rounded corners with CSS!

W3C has offered some new options for borders in CSS3, of which one is border-radius. Both Mozila/Firefox and Safari 3 have implemented this function, which allows you to create round corners on box-items.
<div style=" background-color: #ccc;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #000;
padding: 10px;" >
More info: http://www.css3.info/preview/rounded-border/

But it doesn't work in IE. Anybody has any solution? Can anyone give me code which will work across all the browsers? Please help.