londrum

msg:4459345 | 9:16 am on May 30, 2012 (gmt 0) |
you've got
#myboxes .item1.hover it should be
#myboxes .item1:hover with a semi-colon
|
toplisek

msg:4459396 | 12:08 pm on May 30, 2012 (gmt 0) |
Is it technical possible to use .item1.hover? As I understand IE did not support border-radius: 10px 10px 10px 10px; in the past. Is this supported inside new editions like V9?
|
rocknbil

msg:4459522 | 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;
|
|