How do I change the height of row in Bootstrap using percentage? I tried the height property in both CSS , and pure HTML , and did not work.
In a nutshell, I want to have control over the height of the row .
In the Height property, I noticed that if I enter value in pixel ( px ) it works, but I would like to use percentage (% ) , but using a percentage, the property is not recognized<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Bill Turner</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/estilo.css" rel="stylesheet" media="screen">
</head>
<style>
.c{
height: 50%;
background-color:aquamarine;
}
</style>
<body>
<div class="container">
<div class="row" height="50%">
<div class="c col-lg-3 col-md-3 col-sm-3 col-3">
esp
</div>
<div class="c col-lg-3 col-md-3 col-sm-3 col-3">
esp
</div>
<div class="c col-lg-3 col-md-3 col-sm-3 col-3">
esp
</div>
<div class="c col-lg-3 col-md-3 col-sm-3 col-3">
esp
</div>
</div>
</div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>