Table

by yaero

HTML

<table>
  <thead>
    <tr>
      <th>Column 1</th>
			<th>Column 2</th>
			<th>Column 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
			<td>Supercalifragilisticexpialidocious Something something something something attrotious</td>
      <td>2</td>
    </tr>
    <tr>
      <td>1</td>
			<td>This little piggy went to market. This little piggy went to bed.</td>
      <td>2</td>
    </tr>
    <tr>
      <td>1</td>
			      <td>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis amet molestiae earum accusantium nostrum eveniet ipsum soluta ut reprehenderit vel incidunt laboriosam dolorum maiores! Earum deserunt sit unde? Sunt voluptatem!</td>
      <td>2</td>
    </tr>
  </tbody>
</table>

CSS

table {
  margin: 15px 0;
  border: 1px solid black;

  width: 100%;
}


td:nth-child(2) {
	  width: 100%;
		max-width: 0;
		white-space: nowrap;

			overflow: hidden;
			text-overflow: ellipsis;

}