EDIT: Oh, I see. -3 worked.
CSS grid garden
21–30 of 138 posts
Re: CSS grid garden
#22Curious as to why CSS Grid chose to start at 1-index rather than zero, and why the end column is one more than the position of the column that actually stops.
Ultimately these are just conventions. There are probably good reasons for them, too. For example having [a,b)* allows easier computation when you have things that abut. E.g. it's [a,b) [b,c) [c,d) rather than [a,b-1] [b,c-1] [c,d-1]. * https://en.wikipedia.org/wiki/Interval_(mathematics)#Includi...
start:1, end:4 = 1,2,3 (start-inclusive, end-exclusive)
start:5, end:2 = 2,3,4 (I guess this means right-exclusive, whether it's 'start' or 'end'?)
start:1, end:-2 = 1,2,3,4 (the puzzle text says -1 is the first grid-line from the right, i.e. 5, but that doesn't follow, because now it's right-inclusive)
start:-3 = 4 (so -1 is grid count+1, which explains the above?)
Re: CSS grid garden
#23Earlier quoted context omitted.
The walled garden I speak of is the implementation of add-ons cryptographically signed by Mozilla only. Unless you run one of the betas (w/bugs) you cannot use any add-on not approved by Mozilla. And lately they've even been removing/banning add-ons that aren't illegal but otherwise upset outside corporations (ie, the paywall bypasser that uses googlebot's http headers substituted in).
Is there a way to enable unsigned extensions at all, say from about:config?
Re: CSS grid garden
#24Flex seems more flexible to me than CSS Grid.
Re: CSS grid garden
#25Re: CSS grid garden
#26Flex seems more flexible to me than CSS Grid.
Re: CSS grid garden
#27Earlier quoted context omitted.
The walled garden I speak of is the implementation of add-ons cryptographically signed by Mozilla only. Unless you run one of the betas (w/bugs) you cannot use any add-on not approved by Mozilla. And lately they've even been removing/banning add-ons that aren't illegal but otherwise upset outside corporations (ie, the paywall bypasser that uses googlebot's http headers substituted in).
Is there a way to enable unsigned extensions at all, say from about:config?
Re: CSS grid garden
#28Flex seems more flexible to me than CSS Grid.
Re: CSS grid garden
#29Re: CSS grid garden
#30This couldn't be more timely. I was just thinking maybe a day or so ago "It's probably about time I sit down and learn CSS grids." Love the format, thanks for sharing!