The Css Bug

HTML 5 Today

New features in HTML 5 are here

Are you praying for the day when we can stop supporting IE6? In this post, James gives us some things to look forward to for when that day finally comes!
[SitePoint Article]

One of the oldest problems in webdesign is related to background images on table rows.
Problem: when you provide a background images (through HTML or CSS) on a table row:

<table>

<tr background="bg.gif">

<td>some stuff</td>

<td>more stuff</td>

<tr>

</table>

On Firefox everything would go out as planned. However in older browsers like IE 6, each of the 2 table columns will inherit the [...]

Change bullet on mouseover (CSS)

The following short tutorial will show you how to create a simple menu like the one in the image bellow.

In order to simulate de the bullet we use the css property “background”.
For positioning the bullet on the right  side, we use “background-position” and we specify the left offset in pixels.
We also need to specify [...]