0
Please how can I create two footers in one background. One by the right and the other by the left ???
Please it's important. Let me know thanks
4 Réponses
+ 1
Could you leave a link to the page, let me know what you mean
0
You mean the two footers lying side by side?
CSS3
container{
display:grid;
grid-template-rows: 1fr;
grid-template-columns: 1fr 1fr;
}
OR
container{
display:flex;
}
container .footer{
flex:1;
}
0
I mean like google front page footer
0
One is by the right and the other by the left