+ 1
Fill in the blanks to make an image brighter and circled.
.very_bright{ filter : brightness (150%); border- ______ : 50%; } I just cant figure out the last fill in the blank it consists of 6 letters.
9 ответов
+ 10
//it is border-radius which is used to define the border radius
.very_bright{
filter : brightness (150%);
border- radius : 50%;
}
https://www.sololearn.com/learn/CSS/2238/
+ 3
.very_bright {
filter:brightness (150%);
border-radius: 50%;
}
+ 3
.filtered {
filter: blur (5px) brightness (110%);
}
+ 1
radius
+ 1
.very_bright {
filter:brightness (150%);
border-radius: 50%;
}
0
.very_bright {
filter
:
brightness
(150%);
border-
radius
: 50%;
}
0
it is border-radius which is used to define the border radius
.very_bright{
filter : brightness (150%);
border- radius : 50%;
}
0
it is border-radius which is used to define the border radius
.very_bright{
filter : brightness (150%);
border- radius : 50%;
}
- 2
Please help me solve this
Fill in the blanks to adjust the brightness of an image to 110% and apply a blur effect to it.
.filtered {
filter:
(5px) brightness(
%);
}