Hey everyone,
I've recently added the following CSS:
#tab-navigation ul li:last-child {
background-image: url(../images/tabs-end.gif);
background-repeat: no-repeat;
color: #fff;
display: block;
border: 1px solid red;
background-position: right;
}
Unfortunately, this CSS isn't working as expected in Internet Explorer (what a surprise!) - I discovered that IE may require a specific DOCTYPE declaration. Even though I already have
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
defined.
Any suggestions or thoughts on how to fix this issue?