At any time, if you need to check the yahoo messanger status of some one, just visit this site:
http://detectinvisible.com/
Yet there are many other sites which provide you with the same functionality, i found this as the best one.
Hi, Welcome to my place.
Hi All,
Ever wondered if you have an option to create rounded div using css. Not in all browsers but the most popular browser i.e., the mozilla has such an option. To have rounded corner for a div we just need to give it as,#myDiv
or you can give all in a single line as
{
border:solid 1px black;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
}#myDiv
For Safari broswer, you can use
{
border: solid 1px black;
-moz-border-radius: 10px;
}-webkit-border-radius: 10px;
or you can specify individually as
-webkit-border-top-right-radius: 10px;For more information, please visit:
-webkit-border-top-leftt-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;