2
Good evening, I’m trying to put this input at the end of this bootstrap container, but I can’t at all. I need this search input to be at the end of this Row.
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Teste</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-4">
<h1>Teste</h1>
</div>
<div class="col-4">
<input type="search" placeholder="Buscar nome..." class="form-control">
</div>
</div>
</div>
</body>
</html>
If anyone can help, I’d appreciate it!