Js23
Js23
KPCKevin Powell - Community
Created by districtw on 1/12/2024 in #front-end
a 50/50 items in the -- no wrapper mindset with css grid
oh i think it was justifay-items: space-between
26 replies
KPCKevin Powell - Community
Created by districtw on 1/12/2024 in #front-end
a 50/50 items in the -- no wrapper mindset with css grid
i believe that you can use inside parent the justify-content: space-between
26 replies
KPCKevin Powell - Community
Created by districtw on 1/12/2024 in #front-end
a 50/50 items in the -- no wrapper mindset with css grid
You can flex of the following way: the parent must be contain display: flex then on children must apply of property flex: 1 1 50%. Remember that flex is a shorthand the following properties flex-grow, flex-shrink and flex-basis precisely in this order
.parent {
display: flex;
align-items: center;
}

.parent > * {
flex: 1 1 50%
}
.parent {
display: flex;
align-items: center;
}

.parent > * {
flex: 1 1 50%
}
26 replies
KPCKevin Powell - Community
Created by Js23 on 1/11/2024 in #front-end
Help to how use :invalid in CSS
Thanks 🥰. You are of the best
5 replies
KPCKevin Powell - Community
Created by Js23 on 1/11/2024 in #front-end
Help to how use :invalid in CSS
So.. could i use not the :invalid?
5 replies