xxxxxxxxxx
1
<div class="container my-5">
2
3
<!-- Section: Introduction -->
4
<section class="">
5
6
<p>
7
Detailed documentation and more examples you can find in our
8
<a href="https://mdbootstrap.com/docs/standard/extended/textarea/" target="_blank"><strong>Textarea Docs</strong></a>.
9
</p>
10
11
<hr class="mt-5">
12
13
<p>Built with <a target="_blank" href="https://mdbootstrap.com/">Material Design for Bootstrap</a> - <strong>free</strong> and powerful Bootstrap UI KIT</p>
14
15
<a class="btn btn-danger me-2" href="https://mdbootstrap.com/" target="_blank" role="button">Download MDB UI KIT</a>
16
<a class="btn btn-dark me-2 px-3" target="_blank" href="https://github.com/mdbootstrap/mdb-ui-kit" role="button"><i class="fab fa-github"></i></a>
17
18
<hr class="mb-5"/>
19
20
</section>
21
<!-- Section: Introduction -->
22
</div>
23
24
<div class="row d-flex justify-content-center">
25
<div class="col-sm-8 mt-2">
26
<!--Material textarea-->
27
<div class="md-form">
28
<textarea id="form7" class="md-textarea scrollable textarea-scrollable form-control" rows="3"></textarea>
29
<label for="form7">Material textarea</label>
30
</div>
31
</div>
32
</div>
xxxxxxxxxx
1
.scrollable::-webkit-scrollbar {
2
width: 0px;
3
background: transparent;
4
}
5
.scrollable {
6
overflow-y: auto !important;
7
scrollbar-width: none;
8
-ms-overflow-style: none;
9
}
1
1
Console errors: 0