Can anyone offer some assistance?
I've configured my bootstrap cards to display 3 in a row on larger screens and resize for smaller devices. The issue I'm facing is that the cards are displayed in a grid format, but I would like to add a small margin to the right of each card to make them look separate rather than table-like.
Whenever I try to add a margin-right property, it causes the cards to go out of alignment and move onto the next row. How can I add the margin-right while keeping the cards on the same row?
This is what my code looks like so far:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Account Dashboard</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src=&...