Pergunta

I'm trying to center the content of my bootstrap table so they line up with the image.

Here is the jsfiddle: http://jsfiddle.net/t4GHt/

I have no idea what to do, I tried many things but nothing seems to work. Hopefully someone here has a (simple) trick.

Foi útil?

Solução

Assuming that you want your text aligned to the vertical center of your images, all you have to do is apply the following CSS rule:

.table>tbody>tr>td {
    vertical-align: middle;
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top