-1

I want to make a registration form

How can I align this box like right under the head title?

h1 {
  text-align: center;
}

.registrerBoks {
  width: 300px;
  height: 300px;
  background-color: lightblue;
}
<h1>registrer</h1>
<div class="registrerBoks">

</div>
Wais Kamal
  • 5,442
  • 2
  • 14
  • 28
Achu
  • 39
  • 5

2 Answers2

0

You can use margin:auto:

h1 {
  text-align: center;
}

.registrerBoks {
  width: 300px;
  height: 300px;
  margin: auto;
  background-color: lightblue;
}
<h1>registrer</h1>
<div class="registrerBoks"></div>
Wais Kamal
  • 5,442
  • 2
  • 14
  • 28
0

Add margin: auto; to the registerBoks form.

h1 {
  text-align: center;
}

.registrerBoks {
  width: 300px;
  height: 300px;
  margin: auto;
  background-color: lightblue;
}
<h1>registrer</h1>
<div class="registrerBoks">

</div>
wangdev87
  • 8,285
  • 3
  • 6
  • 30