How to Divide Colors?

Asked

Viewed 24 times

-2

inserir a descrição da imagem aqui

I would like to introduce the colors of the flag of France in the above rectangle,?

  • Your question is not clear, put what you already have of code, and better indicate where eh you want to put the colors

  • look at this image I made in Paint and see if you understand me now > https://uploaddeimagens.com.br/imagens/2019-03-30_-2-png

  • if you want I can pass you the game link to Voce test and see how it works,

  • Cara has 1000 ways to do this, you need to give more details, start editing your question and including what you already have code

  • > https://uploaddeimagens.com.br/imagens/2019-03-30_-3-png < codes I have and know how to use (these are the only ones I know, the ones I used to make the text in the image "TSUBASA 10")

1 answer

0


.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
}

.grid-container>div {
    height: 200px;
}
<!DOCTYPE html>
<html>
    <head>

    </head>

    <body>

        <div class="grid-container">
            <div style="background: blue;"></div>
            <div style="background: white;"></div>
            <div style="background: red;"></div>
        </div>

    </body>
</html>

Browser other questions tagged

You are not signed in. Login or sign up in order to post.