Make it so table cell don't expand vertically because of content












0















I have an html table, I fill this table with content taken from a database however there's one side effect I want to avoid, I want to avoid the cells expanding vertically to accomodate the content, I tried using table-layout:fixed, overflow:hidden or setting max height for rows but none of these worked.



Any idea how I can fix this?



This is my table component (using vue):






<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td>{{ post.postcategory.name }}</td>
<td>{{ post.title }}</td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>












share|improve this question

























  • height or max-height won't work on table element, try to set the height or max-height on the td elements

    – Towkir Ahmed
    Nov 14 '18 at 12:40











  • Have you tried no-wrap?

    – Anthony
    Nov 14 '18 at 13:10
















0















I have an html table, I fill this table with content taken from a database however there's one side effect I want to avoid, I want to avoid the cells expanding vertically to accomodate the content, I tried using table-layout:fixed, overflow:hidden or setting max height for rows but none of these worked.



Any idea how I can fix this?



This is my table component (using vue):






<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td>{{ post.postcategory.name }}</td>
<td>{{ post.title }}</td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>












share|improve this question

























  • height or max-height won't work on table element, try to set the height or max-height on the td elements

    – Towkir Ahmed
    Nov 14 '18 at 12:40











  • Have you tried no-wrap?

    – Anthony
    Nov 14 '18 at 13:10














0












0








0








I have an html table, I fill this table with content taken from a database however there's one side effect I want to avoid, I want to avoid the cells expanding vertically to accomodate the content, I tried using table-layout:fixed, overflow:hidden or setting max height for rows but none of these worked.



Any idea how I can fix this?



This is my table component (using vue):






<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td>{{ post.postcategory.name }}</td>
<td>{{ post.title }}</td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>












share|improve this question
















I have an html table, I fill this table with content taken from a database however there's one side effect I want to avoid, I want to avoid the cells expanding vertically to accomodate the content, I tried using table-layout:fixed, overflow:hidden or setting max height for rows but none of these worked.



Any idea how I can fix this?



This is my table component (using vue):






<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td>{{ post.postcategory.name }}</td>
<td>{{ post.title }}</td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>








<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td>{{ post.postcategory.name }}</td>
<td>{{ post.title }}</td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>





<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td>{{ post.postcategory.name }}</td>
<td>{{ post.title }}</td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>






javascript html css vue.js






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 14 '18 at 12:42









barbsan

2,43821223




2,43821223










asked Nov 14 '18 at 12:34









gabogabansgabogabans

1313




1313













  • height or max-height won't work on table element, try to set the height or max-height on the td elements

    – Towkir Ahmed
    Nov 14 '18 at 12:40











  • Have you tried no-wrap?

    – Anthony
    Nov 14 '18 at 13:10



















  • height or max-height won't work on table element, try to set the height or max-height on the td elements

    – Towkir Ahmed
    Nov 14 '18 at 12:40











  • Have you tried no-wrap?

    – Anthony
    Nov 14 '18 at 13:10

















height or max-height won't work on table element, try to set the height or max-height on the td elements

– Towkir Ahmed
Nov 14 '18 at 12:40





height or max-height won't work on table element, try to set the height or max-height on the td elements

– Towkir Ahmed
Nov 14 '18 at 12:40













Have you tried no-wrap?

– Anthony
Nov 14 '18 at 13:10





Have you tried no-wrap?

– Anthony
Nov 14 '18 at 13:10












1 Answer
1






active

oldest

votes


















0














You can wrap your td content with a div and then set its height






.heightCont{
height: 1em;
overflow: hidden;
}

<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td><div class="heightCont">{{ post.postcategory.name }}</div></td>
<td><div class="heightCont">{{ post.title }}</div></td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>








share|improve this answer


























  • This worked for me, thanks!

    – gabogabans
    Nov 17 '18 at 15:31











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53300388%2fmake-it-so-table-cell-dont-expand-vertically-because-of-content%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You can wrap your td content with a div and then set its height






.heightCont{
height: 1em;
overflow: hidden;
}

<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td><div class="heightCont">{{ post.postcategory.name }}</div></td>
<td><div class="heightCont">{{ post.title }}</div></td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>








share|improve this answer


























  • This worked for me, thanks!

    – gabogabans
    Nov 17 '18 at 15:31
















0














You can wrap your td content with a div and then set its height






.heightCont{
height: 1em;
overflow: hidden;
}

<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td><div class="heightCont">{{ post.postcategory.name }}</div></td>
<td><div class="heightCont">{{ post.title }}</div></td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>








share|improve this answer


























  • This worked for me, thanks!

    – gabogabans
    Nov 17 '18 at 15:31














0












0








0







You can wrap your td content with a div and then set its height






.heightCont{
height: 1em;
overflow: hidden;
}

<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td><div class="heightCont">{{ post.postcategory.name }}</div></td>
<td><div class="heightCont">{{ post.title }}</div></td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>








share|improve this answer















You can wrap your td content with a div and then set its height






.heightCont{
height: 1em;
overflow: hidden;
}

<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td><div class="heightCont">{{ post.postcategory.name }}</div></td>
<td><div class="heightCont">{{ post.title }}</div></td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>








.heightCont{
height: 1em;
overflow: hidden;
}

<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td><div class="heightCont">{{ post.postcategory.name }}</div></td>
<td><div class="heightCont">{{ post.title }}</div></td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>





.heightCont{
height: 1em;
overflow: hidden;
}

<table class="entry_table_container" v-if="posts" style="overflow:hidden; table-layout:fixed;">
<tr>
<th class="entry_table_header" width="5%">Categoría</th>
<th class="entry_table_header" width="5%">Titulo</th>
<th class="entry_table_header" width="5%">Contenido</th>
<th class="entry_table_header" width="5%">Imagen</th>
<th class="entry_table_header" width="5%">Descripción</th>
<th class="entry_table_header" width="5%">Visible</th>
<th class="entry_table_header" width="5%">Acción</th>
</tr>
<tr class="row" v-for="post in posts" :key="post.id">
<td><div class="heightCont">{{ post.postcategory.name }}</div></td>
<td><div class="heightCont">{{ post.title }}</div></td>
<td v-html="post.body"></td>
<td>
<div class="image_row_container" :style="'background-image:url('+post.image+');'"></div>
</td>
<td v-html="post.imageDescription"></td>
<td class="checkbox_row" style=""><input type="checkbox" class="entry_checkbox" :checked="post.isVisible"></td>
<td class="row_buttons_container">
<button class="row_buttons_button boot_blue" @click="showModal({ activePostModal: 'PostUpdateModal', post: post})" type="button" title="Editar"><i class="fas fa-pencil-alt"></i></button>
<button class="row_buttons_button boot_red" @click="showModal({ activePostModal: 'PostDeleteModal', post: post})" type="button" title="Eliminar"><i class="fas fa-trash-alt"></i></button>
</td>
</tr>
</table>






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 14 '18 at 12:52

























answered Nov 14 '18 at 12:46









Itay GalItay Gal

8,05252560




8,05252560













  • This worked for me, thanks!

    – gabogabans
    Nov 17 '18 at 15:31



















  • This worked for me, thanks!

    – gabogabans
    Nov 17 '18 at 15:31

















This worked for me, thanks!

– gabogabans
Nov 17 '18 at 15:31





This worked for me, thanks!

– gabogabans
Nov 17 '18 at 15:31


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53300388%2fmake-it-so-table-cell-dont-expand-vertically-because-of-content%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python