css push table cell underneath

Solutions on MaxInterview for css push table cell underneath by the best coders in the world

showing results for - "css push table cell underneath"
Helena
06 Oct 2020
1I have this : 
2|  1  |  2  |  3  |        4        |
3
4I want this : 
5|     1     |     2     |     3     |
6|                 4                 |
7
8- HTML :
9
10<tr>
11  <th scope="row">1</th>
12  <td>2</td>
13  <td>3</td>
14  <td>4</td>
15</tr>
16
17- CSS : 
18
19td:nth-child(4) {
20  display: block;
21  width: 100%;
22}
23th,
24td:nth-child(2),
25td:nth-child(3) {
26  display: inline-block;
27  width: 33%;
28}
queries leading to this page
bootstrap table total row stylebootstrap table row and cellbootstrap table new linedoes tradsey use bootstraphow to make th in bootstrap table to get whole linebootstrap table no line breakbootstrap table break word in betweenbootstrap table cell wrapbootstrap break table rowdivide table in sections bootstraptable wrap bootstrapi dont the table to break the words in bootstrapbootstrap line break in tablebootstrap expanding table rowbootstrap table expandword break in table td bootstrap 5bootstrap 5 table breakpointsbootstrap table only horizontal borderbootstraptable get rowsbootstrap new line table elementbootstrap styling table no lines between rowsresponsive bootstrap table to next line columnhow to break table to lines in small screen bootstrapbootstrap table nextbootstrap make row int table linkbootstrap table no row borderbootstrap table row circlebootstrap table striped breakpointsbootstrap table keep text from breakbootstrap table border on one rowbootstrap table link rowbootstrap 5 line break in table cellbootstrap last row table border noneword break in table td bootstrapbootstrap table goes out of divbootstrap tables breakpointbootstrap table row expandbootstrap table break wordhow to divide a table in bootstrapbootstrap strikethrough table rowcreate dynamic table bootstrapbootstrap rounded tr bootstrap th inside thhow to enable row lines of table in bootstraphow to make table coms in line in small screen bootstrapbootstrap force line break in tablehow to break row in table in bootstrapbootstrap table responsive breakpointtable bottom row in bootstrapbootstrap table text breaktable sm in bootstrapbootstrap table no word breaktable rows bootstrapbootstrap table expand rowbootstrap table number of rowsbootstrap no line tablebootstrap table 10 rowscolumn in table break word in bootstraphow to make table shrink with the window bootstrapbootstrap table borders for one columnbootstrap print table page break how to separate bootstrap table rowwrap column header in bootstrap tableclick row table bootstrapbootstrap expand table rowbootstrap table row covering all columnsone row table bootstrapbootstrap table click rowhow to break table bootstrapbootstrap table row wrapcss push table cell underneath