Page is a not externally linkable
rocknbil - 4:35 pm on May 30, 2012 (gmt 0)
.item1.hover would be a class of item 1 with a class of hover
<a class="item1 hover">
It would be a very bad idea to create a class name like that, but it would probably work.
As I understand IE did not support border-radius: 10px 10px 10px 10px; in the past. Is this supported inside new editions like V9?
There are some workarounds. and BTW you only need
border-radius:10px;
for all four corners. This may or may not be overhead, but you can see what it does.
-webkit-border-radius:10px;
-moz-border-radius:10px;
-ms-border-radius:10px;
-o-border-radius:10px;
border-radius:10px;