"Inline Input Fields Form"
Bootstrap 3.0.0 Snippet by willcaba

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
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 id="hero-home" class="container-fluid">
<div class="container">
<div class="col-sm-4 hero-form">
<h2>Form Title</h2>
<form>
<div class="form-group">
<label class="sr-only" for="firstName">First Name</label>
<div class="input-group">
<div class="input-group-addon">
<img src="assets/media/images/icon-form-name.svg">
</div>
<div class="">
<input type="text" class="form-control" id="firstName" placeholder="First Name">
</div>
</div>
</div>
<div class="form-group">
<label class="sr-only" for="lastName">Last Name</label>
<div class="input-group">
<div class="input-group-addon">
<img src="assets/media/images/icon-form-name.svg">
</div>
<div class="">
<input type="text" class="form-control" id="lastName" placeholder="Last Name">
</div>
</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
.hero-form {
background-color: #eee;
padding: 20px;
margin-top: 30px;
}
.hero-form h2 {
margin-top: 0;
text-align: center;
}
.hero-form .form-group {
margin-bottom: 10px;
}
.hero-form input[type="text"] {
box-sizing: border-box;
}
.hero-form .input-group-addon img {
width: 20px;
}
.hero-form .form-control {
height: 38px;
background-color: #fff;
border: none;
border-radius: 0;
}
.hero-form .input-group-addon {
border: none;
border-radius: 0;
background-color: #999;
}
.form-group .input-group .input-padding {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: