Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How can I move the title to the center

I want to move the title to green area. If I carry to the container it puts blue area. If I decrease container height title getting closer to the squares. But I want the boxes in the center and the title little above of them. How can I do it?

#container {
  width: 1200;
  height: 600px;
  margin: auto;
  border: 1px solid grey;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  height: 250px;
  width: 250px;
  margin-left: 25px;
  margin-right: 25px;
  background-color: red;
}

h1 {
  text-align: center;
}
<h1>TITLE!!!</h1>
<div id="container">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
</div>

my page

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

It’s the display: flex; that’s causing the issue. Here’s a working model:

<div id="container">
    <h1>TITLE!!!</h1>
    <div class="box-wrapper"> 
        <div class="box"></div>
        <div class="box"></div>
        <div class="box"></div>
    </div>
</div>
#container {
    width: 1200;
    height: 600px;
    margin: auto;
    border: 1px solid grey;
}
.box-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.box {
    height: 250px;
    width: 250px;
    margin-left: 25px;
    margin-right: 25px;
    background-color: red;
}
h1 {
    text-align: center;
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading