I've been attempting to include a thicker border around the entirety of my Bootstrap 4 card. Despite specifying a thicker border, nothing seems to change. Below is a snippet of the code I'm working with:
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-3">
<div class="card h-100">
<img src="img/html.jpg" alt="HTML" class="card-img-top " style="display: block">
<div class="card-block">
<h3 class="card-title"> Projects </h3>
<p class="font-weight-light"> hello world hello worldhello worldhello worldhello worldhello world</p>
<form action="https://www.w3schools.com/html/">
<button type="submit" class="btn btn-danger btn-lg btn-block">Learn More</button>
</form>
</div>
</div>
</div>
Below is the CSS portion:
.card {
border-style: 5px solid black;
padding-bottom: 3%;
}
.row {
padding-bottom: 15%;
}
Any suggestions on what adjustments could lead me to the desired outcome?
Appreciate any help.