N
N
notfriee2019-03-15 15:29:38
HTML
notfriee, 2019-03-15 15:29:38

How to place text in the middle of the page?

<div class="homepage" id="all">
      <div class="container">
          <div class="logo m-auto">
              <span></span>
          </div>
          <div class="text text-center m-auto">
            Пример текста
          </div>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
sergski, 2019-03-15
@notfriee

.container {
  display: grid;
  grid-template-columns:  1fr;
  grid-template-rows: auto 1fr;
  height: 100vh;
}

.text-center {
  place-self: center;
  width: auto;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question