<div class="container">
<p class="item" contenteditable>
Jsem uprostřed!
</p>
</div>
.container {
display: grid;
place-items: center;
}
/* ETC (Formatting only): */
body {
margin: 1.5em;
font-size: 200%;
font-family: sans-serif;
background: #e5e3de;
color: #2E2C08;
font-weight: bold;
}
.container {
min-height: 10rem;
padding: 1rem;
background: white;
height: 15em;
}
.item {
padding: 1em;
text-align: center;
border: 10px solid #2E2C08;
max-width: 20em;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.