"Comment Box"
Bootstrap 4.1.1 Snippet by ravi7284007

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.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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 my-2">
<h1>Leave a Reply</h1>
<p>Your email address will not be published. Required fields are marked *</p>
<div class="row mt-4">
<div class="col-md-9">
<form class=" reply-form ">
<div class="commentBox">
<ul class="list-unstyled">
<li><span class="profileBox">M</span> <span class="profileText">Your email address will not be published.</span></li>
<li><span class="profileText">Your email address will not be published. Your email address will not be published. Required fields are marked </span> <span class="profileBox">L</span> </li>
<li> <span class="profileBox">M</span> <span class="profileText">Your email address will not be published. Required fields are marked </span> </li>
</ul>
</div>
<div id="div_id_username" class="form-group required">
<div class="controls form-group d-flex w-100 ">
<input class="input-md textinput textInput form-control" id="id_username" placeholder="Write your review" type="text" />
<button type="submit" class="btn btn-info border-radius-0 m-0 w-25">POST</button>
</div>
</div>
</form>
</div>
<div class="col-md-3">
<div class="card">
<h4><i class="fa fa-ticket" aria-hidden="true"></i> Ticket Information</h4>
<ul class="list-unstyled">
<li>
<p>Your email address will not be published</p>
<span class="badge badge-warning">Warning</span>
</li>
<li>
<strong>Department</strong>
<p>Support</p>
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
.reply-form {
background: #fff;
border:1px solid #eee;
padding: 37px;
}
.textInput {
border-radius: 0;
height: 45px;
margin: 0 !important;
}
.border-radius-0{
border-radius:0;
}
.textInput:focus {
box-shadow: none;
outline: none
}
.commentBox ul li .profileBox {
width: 50px;
height: 50px;
border-radius: 50%;
display: inline-flex;
justify-content: center;
align-items: center;
background-color: #002247;
color: #fff;
font-weight: 700;
}
.commentBox ul li:nth-child(even) .profileBox {
background-color: #222;
}
.profileText {
border-radius: 7px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: