-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,858
  • 2
  • 17
  • 36
Achu
  • 39
  • 6

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,858
  • 2
  • 17
  • 36
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,611
  • 3
  • 8
  • 31