Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"Table With Toggle Switch"
Bootstrap 3.3.0 Snippet by
Walia5
3.3.0
table
switch
toggle
Preview
HTML
CSS
View Full Screen
Fork
Fork this
23.4K
 
5 Fav
Post to Facebook
Tweet this
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row" style="margin-top: 50px;"> <div class="col-md-12 text-center"> <div class="outer-form"> <table class="table-striped table table-bordered vertical"> <thead style="color: white; font-weight: normal; background-color: black;" > <tr> <th class="head">S.No.</th> <th class="head">Username</th> <th class="head">E-mail</th> <th class="head">Phone Number</th> <th class="head">Location</th> <th class="head">Status</th> </tr> </thead> <tbody style="border:1px solid transparent; background-color:#242424; color:#A1A6AB; text-align: left;"> <tr> <td style="padding: 14px;">01</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox" checked> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">02</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">03</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">04</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">05</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">06</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">07</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">08</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">09</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> <tr> <td style="padding: 14px;">10</td> <td>WaLia</td> <td>Walia@gmail.com</td> <td>+1 222 555 6666</td> <td>Ontario, Canada</td> <td> <label class="switch"> <input type="checkbox"> <span class="slider round"></span> </label> </td> </tr> </tbody> </table> </div> </div> </div> </div>
body { background-color:#393939; } .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th { padding: 8px; line-height: 1.42857143; vertical-align: middle; border-top: 1px solid #ddd; } .switch { position: relative; display: inline-block; width: 45px; height: 20px; vertical-align: middle; margin-top: 8px; } .switch input {display:none;} .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #A1A6AB; -webkit-transition: .4s; transition: .4s; } .slider:before { position: absolute; content: ""; height: 16px; width: 14px; left: 2px; bottom: 2px; background-color: white; -webkit-transition: .4s; transition: .4s; } input:checked + .slider { background-color: #800080; } input:focus + .slider { box-shadow: 0 0 1px #2196F3; } input:checked + .slider:before { -webkit-transform: translateX(26px); -ms-transform: translateX(26px); transform: translateX(26px); } /* Rounded sliders */ .slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; } .table th, .table td { border-top: none !important; border-left: none !important; } .table-striped > tbody > tr:nth-of-type(2n+1) { background-color: #313131 ; } .table-call { min-height: .01%; overflow-x: auto; margin-top: 15px; border-radius: 6px; } .nav > li > a:focus, .nav > li > a:hover { text-decoration: none; background-color: black; color: white; } .table.table-bordered.vertical, .table.table-bordered.vertical td, .table.table-bordered.vertical th{ border-top: 0px solid white !important; border-bottom: 0px solid white !important; border-right: 0px solid white !important; border-left: 0px solid white !important; } .head { font-weight: normal; font-size: 16px; }
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76