My lacking skills of CSS is giving me a headache. As presented in this picture below, captured from firebug:

enter image description here

Using a GWT like framework called Vaadin I have given a Table component the class name m2m-modal-table and I want set a min-height to the four rows in that table. However, I can't seem to get it to work.. And as you see from the image the table doesn't even seem to have the class name m2m-modal-table but v-table-table instead (styles are being added outside my involvement since I'm using an already setup framework library).

So, can anyone who has good knowledge of CSS class referring tell me what I should write in the style sheet to set the row height of the table?

Thank you!

EDIT: Thank you avall for the help. And I found that writing the CSS as:

.m2m-modal-table .v-table-table th,
.m2m-modal-table .v-table-table td {
    height: 55px;
    min-height: 55px;
}

Will only set the style on the table in question and not all tables in the application.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Always set your height to cells, not rows.

.v-table-table th,
.v-table-table td{
    height: 55px;
    min-height: 55px;
}

will do (min-height alone doesn't work).

link|improve this answer
yea it does seem like that should work, but it doesn't... I'm totally confused, I've tried with so many combinations but nothing seems to work.. Do you have any other idea, referring the CSS class name to m2m-modal-table in some fashion..? – AndroidHustle Sep 23 '11 at 14:20
You should see in Firefox firebug which styles affect these cells and then override them. You can also try to use !important. I can't help you more without looking at the site. – avall Sep 23 '11 at 14:27
Wow! That last edit did the trick! Thanks! Now I only have to figure out how to have it only affect THIS table and not all tables in the application... =) – AndroidHustle Sep 23 '11 at 14:33
feedback

You should be able to do this:

.v-table-table tr {
    min-height: 55px;
}

That will target your table's rows and set the height to 55px. Substitute your own height.

link|improve this answer
hmm.. unfortunately it doesn't, think I tried with that one earlier. I think I need some sort of referring from m2m-modal-table in the CSS class, but I don't know what it is... – AndroidHustle Sep 23 '11 at 14:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.