diff options
| author | Varunram <[email protected]> | 2018-03-12 13:38:09 +0530 |
|---|---|---|
| committer | Varunram <[email protected]> | 2018-03-12 13:38:09 +0530 |
| commit | 87065772b1054a8198caddbf1e8e856c8202c7c7 (patch) | |
| tree | 4a2ade9f4ad3a5eea219807b8ec80dc25926a5b4 | |
| parent | 2b86193591dde9402eb72babce74e28cb04e35f9 (diff) | |
| download | bootstrap-87065772b1054a8198caddbf1e8e856c8202c7c7.tar.xz bootstrap-87065772b1054a8198caddbf1e8e856c8202c7c7.zip | |
Fix #25813 by adding extra columns to table
| -rw-r--r-- | docs/4.0/content/tables.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/4.0/content/tables.md b/docs/4.0/content/tables.md index cfacb3c79..2ef7fd893 100644 --- a/docs/4.0/content/tables.md +++ b/docs/4.0/content/tables.md @@ -763,6 +763,9 @@ Use `.table-responsive{-sm|-md|-lg|-xl}` as needed to create responsive tables u <th scope="col">Heading</th> <th scope="col">Heading</th> <th scope="col">Heading</th> + <th scope="col">Heading</th> + <th scope="col">Heading</th> + <th scope="col">Heading</th> </tr> </thead> <tbody> @@ -773,6 +776,9 @@ Use `.table-responsive{-sm|-md|-lg|-xl}` as needed to create responsive tables u <td>Cell</td> <td>Cell</td> <td>Cell</td> + <td>Cell</td> + <td>Cell</td> + <td>Cell</td> </tr> <tr> <th scope="row">2</th> @@ -781,6 +787,9 @@ Use `.table-responsive{-sm|-md|-lg|-xl}` as needed to create responsive tables u <td>Cell</td> <td>Cell</td> <td>Cell</td> + <td>Cell</td> + <td>Cell</td> + <td>Cell</td> </tr> <tr> <th scope="row">3</th> @@ -789,6 +798,9 @@ Use `.table-responsive{-sm|-md|-lg|-xl}` as needed to create responsive tables u <td>Cell</td> <td>Cell</td> <td>Cell</td> + <td>Cell</td> + <td>Cell</td> + <td>Cell</td> </tr> </tbody> </table> |
