miscellaneous tricks

miscellaneous tips and tricks of computer

Implement border radius in IE…hack IE for curved/rounded corner border

we know that rounded corner border is only working fine in firefox ,safari etc but not in IE. There is a hack for implementing curved border in IE.I got a file border.htc which is directly called in CSS using behavior property.
syntax:
behavior:url(border.htc)
this behavior is only for IE for other browser we have to use border radius [...]

Create your curved border with CSS/CSS3: border radius in css

To create a stylish and extra decoration for your border used in css, generally use border-radius to make it in curved shaped.Although this method is used in css3 and not working in IE ,but for mozilla firefox ,safari and other browser.
Syntax: 
-moz-border-radius: 5px
-webkit-border-radius: 5px
-opera-border-radius: 5px
-khtml-border-radius: 5px
 
Example:

.giveborder{
border: 1px solid #eaea00;
background-color:#ffffb7;
padding:5px;
}
.makecurved{
[...]

Useful Tips for Pdf…(5 Tips)

Adobe’s portable document format (PDF) is everywhere these days — and it’s easy to see why. PDF files are secure. They also allow publishers to distribute documents with complex formatting retained, and, thanks to the free Adobe Acrobat Reader, they can be viewed by just about anyone on any platform.
But what if you’d like [...]