2,241 questions
0 votes
1 answer
48 views
Bootstrap Responsive Table in Auto Grid Layout
I'm trying to add a BS Responsive Table inside of a BS Auto-layout Grid and running into what I believe is a bug. The table is breaking the auto layout columns and forcing them to wrap. https://...
1 vote
2 answers
51 views
How to combine border-separate with divide-y?
When I try to combine border-separate (I need it for border-spacing-y-2) with divide-y, then divide-y is ignored until I remove border-separate. Why is that and what is the best practice to get ...
0 votes
3 answers
68 views
How to do <table style="something that will affect the TDs"> purely inline?
<td style="text-align:center"> is great, but let's say I need to do 1000 of them, and ... I am not allowed to use stylesheets. So what can I put in <table style="what"> ...
1 vote
1 answer
68 views
Is it possible to have some cells in a table row to have vertical flow instead or horizontal using css?
I have a basic table: <table border="1"> <tr> <td>Row 1, Cell 1</td> <td>Row 1, Cell 2</td> </tr> <tr> <td>Row 2, Cell ...
0 votes
3 answers
68 views
How to make table cell height equal without image on one cell overgrow the table?
So I have a <table> that has 1 row with 2 columns, one row containing an extraordinarily large image, the other row just contains your usual table cell content - a few <p>s. Here's a ...
0 votes
1 answer
69 views
How to remove the table border-bottom gap?
I am trying to place a border-bottom under each section of data, but it has a split between the first and second columns. I'm not sure how to remove this space between the columns. I tried using an hr ...
1 vote
1 answer
112 views
How to generate a table with cells merged in a column [duplicate]
This is the table I expect: And I used this code, but did not get the expected result <table border="1" align="center" cellpadding="10px"> <thead> <tr> <th>a&...
4 votes
3 answers
167 views
Split headerless html table rows 50% left and 50% right
I have 20 rows like this in a standard html table (table>tbody>tr>td) without a header. current situation <table> <tbody> <tr> <td>1</td> ...
1 vote
1 answer
71 views
Outlook Cloud signature adding 1px padding to CSS/HTML table
I have an HTML/CSS file using nested tables to be used as an email signature in Outlook cloud, and while the code seems to work as intended in VS Code preview or CodePen, when pasting it into Outlook, ...
1 vote
0 answers
80 views
Border radius dosen't line up with inline shadow as table cell
I was adding a drop shadow to an element, and for some reason, the box-shadow was acting like the border had a different radius. But when I removed display: table-cell it rendered perfectly fine. I ...
1 vote
1 answer
48 views
Adding Border Styling to Table Row Headings and Colum Headings
I would greatly appreciate some help with this, if possible. I'm trying to add some global CSS styling to tables that are automatically generated by our company platform's HTML editor, but running ...
0 votes
1 answer
79 views
Is it possible to replicate classic table spacing using CSS Grid?
I have a table with two columns, and multiple rows. One of the columns typically has more content than the other. I would like to replicate the behavior of an old fashioned table, where free space is ...
0 votes
1 answer
51 views
How can I have a table wrap to new page before footer is reached?
I'd like to print a dynamically generated HTML table plus page footer. So, I defined an HTML table and footer, like this: <!DOCTYPE html> <html lang="en"> <head> <...
0 votes
1 answer
100 views
Fixed length table with columns taking up max-width
I'm unable to figure out the CSS styles I need to apply to achieve the following: I would like an HTML table with a max-width of up to 400px. Within the table, each column should have a max width of ...
0 votes
1 answer
39 views
How do I center a table inside a div while not losing overflow
I have a dashboard HTML page that has 2 sections: for vertical navbar for a table of people (and optionally some h1 text later on) I just want a way for the table to be centered in main, and when ...