<div id="box" class="box"></div>
html, body {
height: 100%;
}
body {
display: grid;
justify-content: center;
align-content: center;
}
.box{
display: grid;
justify-content: center;
align-content: center;
width: 250px;
height: 100px;
margin: 10px;
border: 3px solid #333;
font-family: sans-serif;
font-weight: bold;
}
const box = document.getElementById('box')
box.textContent = "I am a box."
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.