0

.dkk {
 color:white;
 margin: 0px auto;
 text-align: center;
 display:inline-block;
 border: 3px solid;
 padding:10px;
 background-color:#333333;
}
<h2 class="dkk">We are currently under construction.</h2>

This is the box. If I can know how to make this one, i can do others myself.

Udhay Titus
  • 5,480
  • 4
  • 21
  • 39
Wardon98
  • 19
  • 4
  • 1
    This is my first time to try coding and using this website, you can ask me any information need to make job easier. – Wardon98 Nov 30 '19 at 08:39

2 Answers2

0

add display:block in your css, it will work's

.dkk {
 color:white;
 margin: 0px auto;
 text-align: center;
 border: 3px solid;
 padding:10px;
 background-color:#333333;
        display:block;
}
<h2 class="dkk">We are currently under construction.</h2>
Udhay Titus
  • 5,480
  • 4
  • 21
  • 39
0

You should replace:

display: inline-block;

With :

display: block;

JsFiddle: https://jsfiddle.net/terza_terza/rLnz01xc/

terza
  • 36
  • 8