+ 12
Can Someone Please Explain This Question For CSS?
Add a circular radial gradient to produce red and blue, with color-stops accordingly at 15 pixels and 25 pixels. background: radial - gradient (50px 50 px, red 15 px, blue 25px);
21 Réponses
+ 3
background: radial-gradient
(50px 50px, red 15px, blue 25px);
+ 2
Drag and drop from the options below to apply 50% opacity to the div, and make it also work in IE:
div {
opacity: 0.5 ;
filter :alpha (opacity=50 );
}
+ 1
Add a circular radial gradient to produce red and blue, with color-stops accordingly at 15 pixels and 25 pixels.
background:
radial
-
gradient
(50px
50
px, red
15
px, blue 25px);
0
background: radial-gradient
(50px 50px, red 15px, blue 25px);
0
background: radial-gradient
(50px 50px, red 15px, blue 25px);
0
In the background-clip property, which value allows for the creation of transparent borders?
padding-box
0
Drag and drop from the options below to make the background image of the element 100 x 100 pixels in size. Also, set the opacity of the element to 50%:
#element {
background-image: url ('test.jpg');
background-size : 100px 100px;
opacity : 0.5 ;
}
0
div { opacity: 0.5 ; filter :alpha (opacity=50 ); }
thanks
0
Drag and drop from the options below to create transparent borders for an element.
.test {
background-clip : padding-box ;
border: 20px solid rgba(0, 0, 0, 0.3);
}
0
In the background-clip property, which value allows for the creation of transparent borders?
padding-box
0
Drag and drop from the options below to make the background image of the element 100 x 100 pixels in size. Also, set the opacity of the element to 50%:
#element {
background-image: url('test.jpg');
background-size: 100px 100px;
opacity: 0.5;
}
0
Add a circular radial gradient to produce red and blue, with color-stops accordingly at 15 pixels and 25 pixels.
background: radial - gradient (50px 50 px, red 15 px, blue 25px);
0
Drag and drop from the options below to apply 50% opacity to the div, and make it also work in IE:
div {
opacity: 0.5;
filter:alpha(opacity=50);
}
0
background:
radial
-
gradient
(50px
50
px, red
15
px, blue 25px);
0
div {
opacity: 0.5;
filter:alpha(opacity=50);
}
0
Add a circular radial gradient to produce red and blue, with color-stops accordingly at 15 pixels and 25 pixels.
background: radial-gradient
(50px 50px, red 15px, blue 25px);
0
Drag and drop from the options below to make the background image of the element 100 x 100 pixels in size. Also, set the opacity of the element to 50%:
#element {
background-image: url ('test.jpg');
background-size : 100px 100px;
opacity : 0.5 ;
}
0
div {
opacity: 0.5 ;
filter :alpha (opacity=50 );
}
0
Add a circular radial gradient to produce red and blue, with color-stops accordingly at 15 pixels and 25 pixels.
background:
radial
-
gradient
(50px
50
px, red
15
px, blue 25px);
0
What is 50px 50px in first parameter?
Can anyone justify that?