I was having a heck of time using 1.x of GWT 1.x and FlexTable and
trying to create a <TH> (vs <TD>) row. This is important because if
you roll your CSS correctly, you can set a style on the table level
and the CSS will take of the rest. Try as I might, I could not get the
CSS below to work. I can't seem to find if 2.0 will make my life
easier.


.SpreadsheetWithBorder {
        border-width: 0px;
        border-spacing: 0px;
        border-style: none;
        border-color: white;
        border-collapse: collapse;
        background-color: white;
}

.SpreadsheetWithBorder TD {
        border-width: 1px;
        padding: 1px 2px 1px 2px;
        border-style: solid;
        border-color: grey;
        background-color: white;
}

.SpreadsheetWithBorder TH {
        border-width: 1px;
        padding: 1px 2px 1px 2px;
        border-style: solid;
        border-color: grey;
        font-weight: bold;
        background-color: #E0E0E0;
}

--

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.


Reply via email to