content logo

Bootstrap Tabs:

Bootstrap Scary Tabs

Tabs are one of the most important elements that help you to get new audiences to your website. So, if you are looking for a different tab to make your website more attractive, pay attention to this post and its code carefully. Here you can see one of the best Bootstrap Scary Tabs that is so useful for your website. These Bootstrap Tabs have a unique and attractive design with a pink color that attracts anyone’s attention quickly. As you can see in this preview that we have provided, these tabs have some sharp lines that make that a little scary. These CSS Scary Tabs are so functional and have a beautiful design.

As you can see here, these Scary Tabs Effect have a dark border and the background of this tab is white. After clicking on and selecting a specific section, you can see a smooth effect with a pink color that represents by a nice animating effect. As soon as you select these Tabs with Animation, the color of the writings will turn white smoothly. You can see a shadow around the detailed part of these CSS Tabs Effect that makes this part more beautiful.

#

Bootstrap Tabs

#

CSS Scary Tabs

#

Tabs with Animation

#

Scary Tabs Effect

#

CSS Tabs Effect

<!-- 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">
                <!-- 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>
                </ul>
                <!-- Tab panes -->
                <div class="tab-content tabs">
                    <div role="tabpanel" class="tab-pane fade in active" id="Section1">
                        <h3>Section 1</h3>
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce semper, magna a ultricies volutpat, mi eros viverra massa, vitae consequat nisi justo in tortor. Proin accumsan felis ac felis dapibus, non iaculis
                            mi varius.
                        </p>
                    </div>
                    <div role="tabpanel" class="tab-pane fade" id="Section2">
                        <h3>Section 2</h3>
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce semper, magna a ultricies volutpat, mi eros viverra massa, vitae consequat nisi justo in tortor. Proin accumsan felis ac felis dapibus, non iaculis
                            mi varius.
                        </p>
                    </div>
                    <div role="tabpanel" class="tab-pane fade" id="Section3">
                        <h3>Section 3</h3>
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce semper, magna a ultricies volutpat, mi eros viverra massa, vitae consequat nisi justo in tortor. Proin accumsan felis ac felis dapibus, non iaculis
                            mi varius.
                        </p>
                    </div>
                </div>
            </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 {
    text-decoration: none;
    outline: none;
}
.tab {
    font-family: "Poppins", sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.tab .nav-tabs {
    background-color: #333;
    padding: 10px;
    border: none;
    border-radius: 10px 10px 0 0;
}
.tab .nav-tabs li a {
    color: #333;
    background: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    padding: 11px 15px 10px;
    margin: 0 10px 0 0;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
    clip-path: polygon(0 5%, 15% 15%, 5% 0, 95% 0, 85% 15%, 100% 5%, 100% 95%, 85% 85%, 95% 100%, 5% 100%, 15% 85%, 0 95%);
}
.tab .nav-tabs li:last-child a {
    margin-right: 0;
}
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a {
    color: #fff;
    background: #fff;
    border: none;
}
.tab .nav-tabs li a:before {
    content: "";
    background: #fc427b;
    height: 100%;
    width: 100%;
    opacity: 0;
    filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
.tab .nav-tabs li.active a:before,
.tab .nav-tabs li a:hover:before {
    border-radius: 10px;
    opacity: 1;
    filter: blur(0);
    transform: scale(0.9, 0.8);
}
.tab .tab-content {
    color: #333;
    background: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
    padding: 25px 20px;
    box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}
.tab .tab-content h3 {
    color: #fc427b;
    background-color: #e7e7e7;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    margin: 0 0 7px 0;
}
@media only screen and (max-width: 479px) {
    .tab .nav-tabs li {
        width: 100%;
    }
    .tab .nav-tabs li a {
        margin: 0 0 10px;
    }
    .tab .nav-tabs li:last-child a {
        margin-bottom: 0;
    }
    .tab .tab-content h3 {
        font-size: 18px;
    }
}
<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 {
    text-decoration: none;
    outline: none;
}
.tab {
    font-family: "Poppins", sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.tab .nav-tabs {
    background-color: #333;
    padding: 10px;
    border: none;
    border-radius: 10px 10px 0 0;
}
.tab .nav-tabs li a {
    color: #333;
    background: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    padding: 11px 15px 10px;
    margin: 0 10px 0 0;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
    clip-path: polygon(0 5%, 15% 15%, 5% 0, 95% 0, 85% 15%, 100% 5%, 100% 95%, 85% 85%, 95% 100%, 5% 100%, 15% 85%, 0 95%);
}
.tab .nav-tabs li:last-child a {
    margin-right: 0;
}
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a {
    color: #fff;
    background: #fff;
    border: none;
}
.tab .nav-tabs li a:before {
    content: "";
    background: #fc427b;
    height: 100%;
    width: 100%;
    opacity: 0;
    filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease;
}
.tab .nav-tabs li.active a:before,
.tab .nav-tabs li a:hover:before {
    border-radius: 10px;
    opacity: 1;
    filter: blur(0);
    transform: scale(0.9, 0.8);
}
.tab .tab-content {
    color: #333;
    background: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px;
    padding: 25px 20px;
    box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.1) inset;
    position: relative;
}
.tab .tab-content h3 {
    color: #fc427b;
    background-color: #e7e7e7;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    margin: 0 0 7px 0;
}
@media only screen and (max-width: 479px) {
    .tab .nav-tabs li {
        width: 100%;
    }
    .tab .nav-tabs li a {
        margin: 0 0 10px;
    }
    .tab .nav-tabs li:last-child a {
        margin-bottom: 0;
    }
    .tab .tab-content h3 {
        font-size: 18px;
    }
}
</style>

</head>
<body>
<div class="container">
    <div class="row">
        <div class="col-md-offset-3 col-md-6">
            <div class="tab" role="tabpanel">
                <!-- 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>
                </ul>
                <!-- Tab panes -->
                <div class="tab-content tabs">
                    <div role="tabpanel" class="tab-pane fade in active" id="Section1">
                        <h3>Section 1</h3>
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce semper, magna a ultricies volutpat, mi eros viverra massa, vitae consequat nisi justo in tortor. Proin accumsan felis ac felis dapibus, non iaculis
                            mi varius.
                        </p>
                    </div>
                    <div role="tabpanel" class="tab-pane fade" id="Section2">
                        <h3>Section 2</h3>
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce semper, magna a ultricies volutpat, mi eros viverra massa, vitae consequat nisi justo in tortor. Proin accumsan felis ac felis dapibus, non iaculis
                            mi varius.
                        </p>
                    </div>
                    <div role="tabpanel" class="tab-pane fade" id="Section3">
                        <h3>Section 3</h3>
                        <p>
                            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce semper, magna a ultricies volutpat, mi eros viverra massa, vitae consequat nisi justo in tortor. Proin accumsan felis ac felis dapibus, non iaculis
                            mi varius.
                        </p>
                    </div>
                </div>
            </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