javascript

Rounded Corners: Nifty Corners

Rounded Corners with CSS are a hot topic in web design: I think that there are hundreds of articles on them. This page is intended to present the solution I came up, that doesn't requires images, extra markup nor CSS.

Nifty Corners arbeitet mit CSS und Javascript ohne Bilder oder zusätzliches (x)HTML-Markup.

http://www.html.it/articoli/nifty/index.html

Snipplr - Code 2.0

Quasi ein Del.icio.us clone für Programmierquelltext Schnipsel.

Snipplr is a public source code repository that gives you a place to store and organize all the little pieces of code that you use each day. Best of all, it lets you share your code snippets with other coders and designers.

http://snipplr.com/

Conditional comments

Conditional comments only work in Internet Explorer, and are thus excellently suited to give special instructions (CSS and JavaScript) meant only for Internet Explorer. They are supported from Internet Explorer 5 onwards.

<!--[if IE]>
This is Internet Explorer
<![endif]-->
<!--[if IE 5]>
This is Internet Explorer 5
<![endif]-->
<!--[if IE 5.0]>
This is Internet Explorer 5.0
<![endif]-->
<!--[if IE 5.5]>
This is Internet Explorer 5.5
<![endif]-->
<!--[if IE 6]>
This is Internet Explorer 6
<![endif]-->