Make it so table cell don't expand vertically because of content
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>
javascript html css vue.js
add a comment |
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>
javascript html css vue.js
height
ormax-height
won't work ontable
element, try to set theheight
ormax-height
on thetd
elements
– Towkir Ahmed
Nov 14 '18 at 12:40
Have you triedno-wrap
?
– Anthony
Nov 14 '18 at 13:10
add a comment |
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>
javascript html css vue.js
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
javascript html css vue.js
edited Nov 14 '18 at 12:42
barbsan
2,43821223
2,43821223
asked Nov 14 '18 at 12:34
gabogabansgabogabans
1313
1313
height
ormax-height
won't work ontable
element, try to set theheight
ormax-height
on thetd
elements
– Towkir Ahmed
Nov 14 '18 at 12:40
Have you triedno-wrap
?
– Anthony
Nov 14 '18 at 13:10
add a comment |
height
ormax-height
won't work ontable
element, try to set theheight
ormax-height
on thetd
elements
– Towkir Ahmed
Nov 14 '18 at 12:40
Have you triedno-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
add a comment |
1 Answer
1
active
oldest
votes
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>
This worked for me, thanks!
– gabogabans
Nov 17 '18 at 15:31
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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>
This worked for me, thanks!
– gabogabans
Nov 17 '18 at 15:31
add a comment |
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>
This worked for me, thanks!
– gabogabans
Nov 17 '18 at 15:31
add a comment |
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>
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>
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
height
ormax-height
won't work ontable
element, try to set theheight
ormax-height
on thetd
elements– Towkir Ahmed
Nov 14 '18 at 12:40
Have you tried
no-wrap
?– Anthony
Nov 14 '18 at 13:10