- 2
CSS
Fill in the blanks to make equal columns from the div elements, which are wrapped in a <main> element. Help please div{ ...... :1; }
9 Respostas
+ 1
Have you looked at the CSS course here?
What about a search online?
I'm sure you can do a bit more of the code and then see if it works.
+ 1
https://www.w3schools.com/Css/css3_multiple_columns.asp
See if this helps you. ;)
+ 1
I did it!Thanks
+ 1
Milena Avetyan Congratulations!👏🎉
+ 1
main {
display
: flex;
}
div {
flex
: 1;
}
0
The code is like this
I don't know what to write after :1
0
main {
display:flex;
}
div {
don't know here:1;
}
0
Got back to lesson 24.1 layouts. You almost got it. You can do it.
0
main{
display:flex;
}
div{
flex:1;
}