Jochem
Jochem
KPCKevin Powell - Community
Created by lko on 3/29/2025 in #front-end
Can you create a carousel in a .container, but with visible overflow with plain CSS?
fair enough
8 replies
KPCKevin Powell - Community
Created by lko on 3/29/2025 in #front-end
Can you create a carousel in a .container, but with visible overflow with plain CSS?
do please also remember https://shouldiuseacarousel.com/
8 replies
KPCKevin Powell - Community
Created by MC23 on 3/28/2025 in #front-end
Styling complex/dynamic element
grid areas or explicitly placing elements based on grid lines
8 replies
KPCKevin Powell - Community
Created by MC23 on 3/28/2025 in #front-end
Styling complex/dynamic element
you can solve that with grid areas if you want, though having a placeholder element isn't the end of the world either
8 replies
KPCKevin Powell - Community
Created by bonzo on 3/25/2025 in #front-end
Lining up table header borders with table body borders
is that even intentional?
25 replies
KPCKevin Powell - Community
Created by bonzo on 3/25/2025 in #front-end
Lining up table header borders with table body borders
No description
25 replies
KPCKevin Powell - Community
Created by bonzo on 3/25/2025 in #front-end
Lining up table header borders with table body borders
table {
border: 3px solid rgb(255, 182, 193);
border-collapse: collapse;
}

thead th {
background-color: rgb(255, 182, 193);
border-left: 2px solid white;
padding: 1px;
}

tbody td {
border-left: 2px solid rgb(255, 182, 193);
padding: 1px;
}
table {
border: 3px solid rgb(255, 182, 193);
border-collapse: collapse;
}

thead th {
background-color: rgb(255, 182, 193);
border-left: 2px solid white;
padding: 1px;
}

tbody td {
border-left: 2px solid rgb(255, 182, 193);
padding: 1px;
}
25 replies
KPCKevin Powell - Community
Created by bonzo on 3/25/2025 in #front-end
Lining up table header borders with table body borders
border-left: 2px doesn't do anything unless you also define a color and a fill type
25 replies
KPCKevin Powell - Community
Created by bonzo on 3/25/2025 in #front-end
Lining up table header borders with table body borders
table cells are weird. The white bit between the THs isn't the border that's defined with the css border property
25 replies
KPCKevin Powell - Community
Created by mic on 3/24/2025 in #front-end
drag and drop but my text is in the way
normally I'd say that's a terrible idea, but drag-and-drop things are one of the few situations where it's justified
68 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
glad to help!
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
you can try asking more broad questions too, but be prepared to just get linked articles. If you do your due diligence and read the articles people link, you can always ask follow up questions
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
otherwise it just goes on with whatever's next
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
if you use await, then it's "wait until this happens, then run this code"
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
you practically never write your own promises, so if that's where you got stuck, don't worry about it. Other than that, promises are just code that runs later. You tell javascript "when something happens, please run this code"
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
Start with what you do, and go from there 🤷
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
a "can someone explain fetch" won't get a lot of traction, but if you put some effort into the question I'm sure someone will give it a shot
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
just be specific with your questions, lay out what you know, what you've tried, and how you think things work
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
you can make posts in #discussions if you want help learning things
65 replies
KPCKevin Powell - Community
Created by lanszelot on 3/24/2025 in #back-end
SQLite checkboxes how to?
it's honestly a vital skill as a web developer, and not something you can avoid
65 replies