On Wed, Apr 15, 2009 at 4:22 PM, David Durham <[email protected]> wrote:
> I have an issue where I'd like to remove the cellspacing on a vertical
> MenuBars underlying Table element. In firefox, I can accomplish this
> with css: border-spacing: 0px;, but this does not appear to work in
> IE. Has anyone on this list ran into this issue and have a good fix
> for it?
Well, apparently nobody cares :), but I fixed the issue with:
.gwt-MenuBar table {
border-collapse: collapse;
}
I was also able to do something like:
menuBar.getElement().getElementsByTagName("table").setAttribute("cellspacing",
"0")
but that did not correct the issue.
-Dave
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---