"Custom Radio Button , Checkbox ,Button"
Bootstrap 4.0.0 Snippet by vkrhanjeeth

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 ---------->
<html>
<body>
<div class="col-md-12 row">
<div class="col-md-6">
<label class="radio">Company
<input type="radio" checked="checked" name="is_company">
<span class="checkround"></span>
</label>
<label class="radio">Company
<input type="radio" name="is_company">
<span class="checkround"></span>
</label>
<label class="radio">Company
<input type="radio" name="is_company">
<span class="checkround"></span>
</label>
<label class="radio">Company
<input type="radio" name="is_company">
<span class="checkround"></span>
</label>
<button class="btn cust-btn " type="button" id="btn-registration" style="font-size: 20PX;letter-spacing: 1px;">Register</button>
</div>
<div class="col-md-6">
<label class="check ">Buying
<input type="checkbox" checked="checked" name="is_name">
<span class="checkmark"></span>
</label>
<label class="check ">Buying
<input type="checkbox" name="is_name">
<span class="checkmark"></span>
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
/* The radio */
.radio {
display: block;
position: relative;
padding-left: 30px;
margin-bottom: 12px;
cursor: pointer;
font-size: 20px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
/* Hide the browser's default radio button */
.radio input {
position: absolute;
opacity: 0;
cursor: pointer;
}
/* Create a custom radio button */
.checkround {
position: absolute;
top: 6px;
left: 0;
height: 20px;
width: 20px;
background-color: #fff ;
border-color:#f8204f;
border-style:solid;
border-width:2px;
border-radius: 50%;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: