Jump to content

Silliw Elbon

Members
  • Posts

    3
  • Joined

  • Last visited

Silliw Elbon's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. The code I used is as close as it gets without having real data on hand. I'd rather think about the first approach. I think it'd be cleaner, but I'm unsure how to line up the data in col 1 and col 2, since they are separated. The only thing I can think of to solve that is to align them to the top, but I'd rather them be centered for a better feel. Do you know any ways to align data from one column with data in another, but still have them centered vertically?
  2. This also isn't for a webpage design. I'm working with a tool that produces an HTML output (for example. that can be used for an email). The fix may not be available, but doesn't hurt to ask. I've attached a little paint drawing what I want (LookNFeel) and what I currently get (LookNotFeel) I approached first having 3 columns, but I could not figure out how to line up the data in the second column to the first column. So if we can solve this, then there is not reason for what I am trying currently. Anyways, so I changed the approach to the sub table in the row, which resolves lining up data from Col1 and Col2. When placing the column border between those cells, it has the issue of not spanning from row to row, when the data on the right stretches the table out. Thanks again.
  3. Hello-- I'm trying to have nested tables with variable data. When the data on the right side of the table expands greater than the nested table on the left, the left table does not expand in the whole cell height wise. What would be a way to resolve this? This is just an example I created in the W3schools Tryit Editor. <!DOCTYPE html><html><head><style>.table1{border-style:solid;border-color:red;border-width:1px;}.table2{height:100%;border-style:solid;border-color:blue;border-width:1px;}</style></head><body> <table class="table1" cellspacing="0" cellpadding="0" width="100%"> <tbody> <tr> <td width="25%"> <table class="table2" cellspacing="0" cellpadding="0" width="100%"> <tbody> <tr> <td width="25%"> <p>ABC</p> </td> <td width="75%"> <p>Not Stuff</p> </td> </tr> </tbody> </table> </td> <td width="75%"> <p><b>Some Text</b></p> <p><b>Some Text</b></p> <p><b>Some Text</b></p> <p><b>Some Text</b></p> <p><b>Some Text</b></p> <p><b>Some Text</b></p> <p><b>Some Text</b></p> </td> </tr> </tbody> </table></body></html> Thanks for any thoughts on this.
×
×
  • Create New...