"Chat"
Bootstrap 4.0.0 Snippet by Frootzy

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 ---------->
<div class="container">
<div class="row">
<div class="card col-sm-4 " style="overflow:scroll;">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Name</h5>
</div>
<p>Last msg</p>
</li>
<li class="list-group-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Name</h5>
</div>
<p>Last msg</p>
</li>
<li class="list-group-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Name</h5>
</div>
<p>Last msg</p>
</li>
<li class="list-group-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Name</h5>
</div>
<p>Last msg</p>
</li>
<li class="list-group-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Name</h5>
</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
.chatperson{
display: block;
border-bottom: 1px solid #eee;
width: 100%;
display: flex;
align-items: center;
white-space: nowrap;
overflow: hidden;
margin-bottom: 15px;
padding: 4px;
}
.chatperson:hover{
text-decoration: none;
border-bottom: 1px solid orange;
}
.namechat {
display: inline-block;
vertical-align: middle;
}
.chatperson .chatimg img{
width: 40px;
height: 40px;
background-image: url('http://i.imgur.com/JqEuJ6t.png');
}
.chatperson .pname{
font-size: 18px;
padding-left: 5px;
}
.chatperson .lastmsg{
font-size: 12px;
padding-left: 5px;
color: #ccc;
}
.limit-item {
height: 50%;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: