السلام عليكم ورحمة الله وبركاته:
احتاج مساعدتكم في حل هذا السؤال المستعصي :
Which of the following code snippets creates a default value for color and background color in the mixin, which will be used if new values are not passed?
: options
.set-colors(@color, @bg-color){
color: blue;
background-color: green;
}
.set-colors(blue, green){
color: @color;
background-color: @bg-color;
}
.set-colors(@color: blue,@bg-color: green){
color: @color;
background-color: @bg-color;
}
.set-colors(default: blue, green){
color: @color;
background-color: @bg-color;
}
هناك اربع خيارات لكني لا اعرف اي خيار هو الصحيح.
الرجاء المساعدة.
وشكرا لكم