Good morning,
I have 3 buttons which I want to be shown in a desktop browser like chrome, the 3 in horizontal line but not so separated from each other since if I apply the class col of separation 4 for each div that are inside the div row, they are placed horizontally as I want but one on the left side, the other in the center and the other almost to the extreme right .. what could you do to make them appear horizontally but be slightly separated?
here I leave the code without the modification 4 4 4, as this code shows me one on the other and in the web part of a mobile it also shows one on the other
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<button type="button" onclick='consultar()'>Solicitadas</button>
</div>
<div class="col">
<button type="button" onclick='consultar2()'>Solicitadas</button>
</div>
<div class="col">
<button type="button" onclick='consultar3()'>Solicitadas</button>
</div>
</div>
</div>
</body>
</html>