Languages
[Edit]
EN

CSS - center text inside element using flexbox

0 points
Created by:
Eshaal-Wilkinson
774

In this article, we would like to show you how to center text inside element using flexbox in CSS.

Quick solution:

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

 

Practical example

In this example, we use flexbox to center text inside the container.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
  <head>
    <style>

      .container {
        background-color: #3085d6;
        height: 200px;
        width: 200px;
        border-radius: 10px;
        box-shadow: 5px 5px 15px gray;

        display: flex; 				/*		<----- required			*/
        justify-content: center;	/*		<----- required			*/
        align-items: center;		/*		<----- required			*/
      }

      .item {
        color: white;
      }

    </style>
  </head>
  <body>
    <div class="container">
      <div class="item">item</div>
    </div>
  </body>
</html>
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

CSS - Flexbox

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join