0 Followers
0 Following
1 Posts
„Die spielen dann ja miteinander“
When the review bottleneck is solved by being bypassed the client/end-user becomes the “bottleneck”. Why can’t he just approve whatever I’m throwing at him and call it a day? \s
“Keep on with the slop ♫, don’t stop ♪ / Don’t stop 'til you get enough ♫ ♪”
Du bist drin für eine gute Zeit: regexcrossword.com
Regex Crossword

A crossword puzzle game using regular expressions. Earn achievements completing puzzle challenges. Easy tutorials for people new to regular expressions.

Regex Crossword

Gepunktet in der Wildnis:

Him backing far-right anti-EU parties for ages is probably coincidental.
There is no such proposal I’m aware of. @function will enable a finite combination in a more convenient way and maybe the ident() function can help building comma separated values in new ways. In general using classes for this is tricky though because the position of each value in the list matters (if you want something like layer-1 = gradient-blue, layer-2 = gradient-red, …). Each class would need to represent a tuple (index, image) so you would need every permutation ( layer-1-gradient-blue, layer-2-gradient-blue, …)
There is no such proposal I’m aware of. @function will enable a finite combination in a more convenient way and maybe the ident() function can help building comma separated values in new ways. In general using classes for this is tricky though because the position of each value in the list matters (if you want something like layer-1 = gradient-blue, layer-2 = gradient-red, …). Each class would need to represent a tuple (index, image) so you would need every permutation ( layer-1-gradient-blue, layer-2-gradient-blue, …)

You can compose layering backgrounds in the way you described by using using custom properties:

‘‘‘css @property --gradient-1 { syntax: “<image> | none”; inherits: false; initial-value: none; }

@property --gradient-2 { syntax: “<image> | none”; inherits: false; initial-value: none; }

.gradient-1, .gradient-2 { background-image: var(–gradient-2), var(–gradient-1); }

.gradient-1 { –gradient-1: linear-gradient(60deg, red 0%, orange 50%, red 100%); }

.gradient-2 { –gradient-2: radial-gradient(at center, blue 10%, teal 50%, transparent 50%); } ‘‘‘ Using the @property syntax with ’inherits: false‘ prevents that the parents value for this property get inherited, so that arbitrary nesting is possible.

SO: “that’s a stupid question!” GPT: “that’s a great question!”