"Search - Bootstrap 4"
Bootstrap 4.0.0 Snippet by kaguru

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="//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 ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Search - Bootstrap 4</title>
<meta name="description" content="Search - Bootstrap 4">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
/*20px padding-Just to be well visible here*/
#searchForm {
padding: 20px;
}
</style>
</head>
<body>
<div id="searchForm">
<div class="container">
<div class="row">
<form class="form-row">
<div class="col">
<input class="form-control" type="search" placeholder="Search">
</div>
<div class="col">
<button class="btn btn-outline-success bg-success" type="submit"><i class="fa fa-search"></i></button>
</div>
</form>
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
#searchForm{
display: absolute;
width: 100%;
margin-left: 11%;
margin-top: 70px;
}
#searchForm .form-row .col {
margin: 0;
padding: 0;
}
#searchForm .form-row button, #searchForm .form-row input {
border: 1px solid #DBDBDB;
border-radius: 0;
margin: 0;
}
#searchForm .form-row input {
border-right: 0px;
width: 750px;
}
#searchForm .form-row button {
width: 50px;
}
#searchForm .form-row button i{
color: #FFFFFF;
}
#searchForm .form-row button:hover{
background: #2ED654 !important;
}
.form-control:focus,
.btn:focus {
border-color: none !important;
box-shadow: none !important;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: