content logo

Bootstrap Tabs:

Bootstrap Nav Tabs in Bottom

As you know, themes are the most critical elements on all websites. Plus, if you choose a tab that fits with your website's design, it will likely gain new visitors and interest older audiences. We've prepared the Bootstrap Nav Tabs in Bottom with excellent performance. This code allows you to change the design of your website and classify the information into several parts. As a result, you can save the physical space and mention much information in a small place. Therefore, the Bootstrap Bottom Tabs can help you in this way. This kind of tab is critical for all websites.

As you can see here, the main theme of the nav-tabs-bottom is dark and black. The writings are white and have a beautiful harmony with their background. The detailed part is the most significant factor that makes these Dark Tabs different. This section is placed at the top of the titles and tabs. As you click on a particular section, it will change to blue. Moreover, you can see two borders up and bottom of the sections in these Rectangle Tabs in Bootstrap. These Simple Dark Tabs are the best ones to use on a website with a dark theme.

#

Dark Tabs

#

Bootsrtap Bottom Tabs

#

Rectangle Tabs in Bootstrap

#

Simple Dark Tabs

#

nav-tabs-bottom

<!-- This script got from frontendfreecode.com -->
<div class="container">
    <div class="row">
        <div class="col-md-offset-3 col-md-6">
            <div class="tab" role="tabpanel">
                <!-- Tab panes -->
                <div class="tab-content">
                    <div role="tabpanel" class="tab-pane fade in active" id="Section1">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Web Development</h3>
                    </div>

                    <div role="tabpanel" class="tab-pane fade" id="Section2">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Brand Building</h3>
                    </div>

                    <div role="tabpanel" class="tab-pane fade" id="Section3">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Responsive Design</h3>
                    </div>

                    <div role="tabpanel" class="tab-pane fade" id="Section4">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Clean & Clear Design</h3>
                    </div>
                </div>
                <!-- Nav tabs -->
                <ul class="nav nav-tabs" role="tablist">
                    <li role="presentation" class="active"><a href="#Section1" aria-controls="home" role="tab" data-toggle="tab">Section 1</a></li>
                    <li role="presentation"><a href="#Section2" aria-controls="profile" role="tab" data-toggle="tab">Section 2</a></li>
                    <li role="presentation"><a href="#Section3" aria-controls="messages" role="tab" data-toggle="tab">Section 3</a></li>
                    <li role="presentation"><a href="#Section4" aria-controls="settings" role="tab" data-toggle="tab">Section 4</a></li>
                </ul>
            </div>
        </div>
    </div>
</div><a style="font-size: 8pt; text-decoration: none" target="_blank" href="http://frontendfreecode.com">Free Frontend</a>
                                                                            
body {
    margin: 20px;
}
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}
.tab .nav-tabs {
    box-shadow: -1px 0 2px #6676ff;
    border-bottom: 0 none;
}
.tab .nav-tabs li {
    width: 25%;
}
.tab .nav-tabs li a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border: none;
    padding: 18px;
    background: #272e38;
    border-radius: 0;
    margin: 0;
    position: relative;
    transition: all 0.3s ease 0s;
}
.tab .nav-tabs li a:hover {
    background: #6676ff;
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:focus,
.tab .nav-tabs li.active a:hover {
    border: none;
    background: #6676ff;
    color: #fff;
    transition: all 0.2s ease 0s;
}
.tab .nav-tabs li.active a:after {
    content: "";
    position: absolute;
    top: -30px;
    left: 38%;
    border: 15px solid transparent;
    border-bottom-color: #6676ff;
}
.tab .tab-content {
    font-size: 14px;
    color: #fff;
    background: #333;
    line-height: 25px;
    padding: 20px;
}
.tab .tab-content h3 {
    font-size: 20px;
    color: #6676ff;
}
@media only screen and (max-width: 480px) {
    .tab .nav-tabs li {
        width: 100%;
        margin-bottom: 2px;
    }
    .tab .nav-tabs li.active a:after {
        border: none;
    }
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- This script got from frontendfreecode.com -->

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style>
body {
    margin: 20px;
}
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}
.tab .nav-tabs {
    box-shadow: -1px 0 2px #6676ff;
    border-bottom: 0 none;
}
.tab .nav-tabs li {
    width: 25%;
}
.tab .nav-tabs li a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border: none;
    padding: 18px;
    background: #272e38;
    border-radius: 0;
    margin: 0;
    position: relative;
    transition: all 0.3s ease 0s;
}
.tab .nav-tabs li a:hover {
    background: #6676ff;
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:focus,
.tab .nav-tabs li.active a:hover {
    border: none;
    background: #6676ff;
    color: #fff;
    transition: all 0.2s ease 0s;
}
.tab .nav-tabs li.active a:after {
    content: "";
    position: absolute;
    top: -30px;
    left: 38%;
    border: 15px solid transparent;
    border-bottom-color: #6676ff;
}
.tab .tab-content {
    font-size: 14px;
    color: #fff;
    background: #333;
    line-height: 25px;
    padding: 20px;
}
.tab .tab-content h3 {
    font-size: 20px;
    color: #6676ff;
}
@media only screen and (max-width: 480px) {
    .tab .nav-tabs li {
        width: 100%;
        margin-bottom: 2px;
    }
    .tab .nav-tabs li.active a:after {
        border: none;
    }
}
</style>

</head>
<body>
<div class="container">
    <div class="row">
        <div class="col-md-offset-3 col-md-6">
            <div class="tab" role="tabpanel">
                <!-- Tab panes -->
                <div class="tab-content">
                    <div role="tabpanel" class="tab-pane fade in active" id="Section1">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Web Development</h3>
                    </div>

                    <div role="tabpanel" class="tab-pane fade" id="Section2">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Brand Building</h3>
                    </div>

                    <div role="tabpanel" class="tab-pane fade" id="Section3">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Responsive Design</h3>
                    </div>

                    <div role="tabpanel" class="tab-pane fade" id="Section4">
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eros urna, dapibus in tellus eu, tempor pretium erat. Etiam ullamcorper lacus quis enim elementum placerat. Proin mollis id ex vel ullamcorper. Aenean
                            vulputate nisl nec.
                        </p>
                        <h3>Clean & Clear Design</h3>
                    </div>
                </div>
                <!-- Nav tabs -->
                <ul class="nav nav-tabs" role="tablist">
                    <li role="presentation" class="active"><a href="#Section1" aria-controls="home" role="tab" data-toggle="tab">Section 1</a></li>
                    <li role="presentation"><a href="#Section2" aria-controls="profile" role="tab" data-toggle="tab">Section 2</a></li>
                    <li role="presentation"><a href="#Section3" aria-controls="messages" role="tab" data-toggle="tab">Section 3</a></li>
                    <li role="presentation"><a href="#Section4" aria-controls="settings" role="tab" data-toggle="tab">Section 4</a></li>
                </ul>
            </div>
        </div>
    </div>
</div><div id="bcl"><a style="font-size:8pt;text-decoration:none;" href="http://www.devanswer.com">Free Frontend</a></div>

</body>
</html>
Preview