I'm having some trouble creating a basic carousel using bootstrap because the images are not displaying full screen. Do I need to use media queries to achieve this and if so, how can I implement them?
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="item active">
<img src="imagehere.png">
</div>
<div class="item">
<img src="imagehere.png">
</div>
<div class="item">
<img src="imagehere.png">
</div>
</div>
</div>