"input group : generic"
Bootstrap 4.0.0 Snippet by jeevan123456

1
2
3
4
5
6
7
8
9
10
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<h2>Create your snippet's HTML, CSS and Javascript in the editor tabs</h2>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Input Group ================================= */
.input-group {
width: 100%;
margin-bottom: 20px; }
.input-group .form-line {
display: inline-block;
width: 100%;
border-bottom: 1px solid #ddd;
position: relative; }
.input-group .form-line:after {
content: '';
position: absolute;
left: 0;
width: 100%;
bottom: -2px;
-moz-transform: scaleX(0);
-ms-transform: scaleX(0);
-o-transform: scaleX(0);
-webkit-transform: scaleX(0);
transform: scaleX(0);
-moz-transition: 0.25s ease-in;
-o-transition: 0.25s ease-in;
-webkit-transition: 0.25s ease-in;
transition: 0.25s ease-in;
border-bottom: 2px solid #1f91f3; }
.input-group .form-line + .input-group-addon {
padding-right: 0;
padding-left: 10px; }
.input-group .help-info {
float: right;
font-size: 12px;
margin-top: 5px;
color: #999; }
.input-group label.error {
font-size: 12px;
display: block;
margin-top: 5px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: