HTML
xxxxxxxxxx
1
<!-- Grid row -->
2
<div class="row">
3
4
<!-- Grid column -->
5
<div class="col-md-6 mb-4">
6
7
<!-- Exaple 1 -->
8
<div class="card example-1 scrollbar-primary">
9
<div class="card-body">
10
<h4 id="section1"><strong>First title of the news</strong></h4>
11
<p>Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out
12
qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan
13
mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim
14
qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic.
15
Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.</p>
16
<p>Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out
17
qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan
18
mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim
19
qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic.
20
Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.</p>
21
</div>
22
</div>
23
<!-- Exaple 1 -->
24
25
</div>
26
<!-- Grid column -->
27
28
29
30
</div>
31
<!-- Grid row -->
32
33
CSS
xxxxxxxxxx
1
.scrollbar-primary::-webkit-scrollbar-thumb {
2
border-radius: 10px;
3
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
4
background-color: #4285F4; }
5
6
.scrollbar-primary::-webkit-scrollbar {
7
width: 12px;
8
background-color: #F5F5F5; }
9
10
11
12
13
14
15
16
17
18
19
20
.example-1 {
21
position: relative;
22
overflow-y: scroll;
23
height: 200px; }
JS
1
1
Console errors: 0