×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Bootstrap 4 new feature in column System
Place an image at the center of a page - Bootstrap 4 - Bootstrap 4
5583    Arnab De    07/09/2017

In bootstrap 4 provide many new classes by those classes we can easily place an object or image into the center of the page. Here we use an image called flower.jpg for example.

set the image under a div:

Create a div and placed the image into it. Image size must be changed accordingly to your monitor size. Or you can use .img-fluid.

Horizontally center the image:

softetechnologies

Now, we use the bootstrap 4 class .justify-content-center to place the image horizontally center on the web page. This class is applying on the created div. This class set the contents alignment horizontally center.

Vertically center the image:

Secondly, we use another bootstrap 4 class .align-items-center to place the image vertically centered on the web page. This class is also applying on the created div. This class set the contents alignment vertically center.

softetechnologies

<html>
<head>
<title>Place Image At The Center of the page</title>
<!-- Link the Bootstrap 4 CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
</head>
<div>
<div class="row h-100 justify-content-center align-items-center">
<img src="flower.jpg" class="img-fluid">
</div>
</div>
</html>

Video Tutorials

Bootstrap 4 new feature in column System
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
It is no easy task to lead men. But it is easy enough to drive them.
Rabindranath Tagore
2242
66.1
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     48311
25/06/2018     40336
01/01/2018     39791
28/06/2017     37667
02/08/2017     36403
01/08/2017     30653
06/07/2017     30399
15/05/2017     29851
14/07/2017     25834
11/09/2018     25310
softetechnologies