Latest solutions
Latest comments
- @ytry0121@antoineterny
Hello ytry0121, great work ! It would be nicer though without the scrollbars. I think you can avoid the overflow by collapsing all the other dropdown when you click on one of them. And also it would be nice if the cursor was a pointer when you click on a title to close it. Cheers
- @antoineterny@antoineterny
Hello ApplePieGiraffe, thanks for the hint ! I hadn't noticed yet this very useful accessibility report, everything is in order now, thanks to you 🙏
- @antoineterny@antoineterny
Hi VoyageinStyle, I stored each criterion in an array like ["language", "javascript"] So here crit[0] is "language" and crit[1] is "javascript" We want to filter the complete list of jobs in which job["language"] is equal to "javascript" You have to be aware that you can find a property in an object with the key as variable between square brackets. Here, job[crit[0]] is equivalent to job.language Hope it helps ! Cheers
- @antoineterny@antoineterny
Hi emestabilo, thanks a lot for your feedback! I hadn't noticed this bug, indeed it was not the expected behavior I guess, it is now fixed thanks to you. Oops ! And thank you for these interesting resources but they don't solve the problem since it only occurs when the tablets go "flex-wrapping", and CSS is not aware of who's wrapped and who's not! Hence this super cool gap property which I hope will be supported by every browser very soon (https://www.caniuse.com/?search=flexbox%20gap) Cheers, Antoine