You can discover new libraries to use in your software projects as well
as be notified of new releases to keep your applications secure and up
to date.
https://libraries.io/
https://libraries.io/
border-style
property value?dotted
inset
glazed
groove
solid
glazed
cm
dm
em
mm
Ans: dm
cm
and mm
are absolute length units. em
is a font-relative length.*
).visibility
or opacity
visibility
property of the element to hidden
will hide the element. The element will still occupy space equal to its
geometric size in the web page. For example, if the hidden element’s
dimensions are 100x100px, you will see an empty 100x100px space in the
area where the element is located. Hiding an element can also be
accomplished by assigning opacity: 0
to an element.display
property to none
. Setting display
to none
renders the element as though it doesn’t exist.olive
fuchsia
cyan
aqua
maroon
cyan
cyan
is a valid color keyword. But it’s not one of the basic color keywords.font-style
CSS property has four different valid values. Three of these values are inherit
, normal
, and italic.
What is one other valid value?oblique
#object h2::first-letter
Selector 2:body .item div h2::first-letter:hover
Ans:
Selector 1:#object h2:first-letter
:active
:hover
:link
:visited
:link
:visited
:hover
:active
content
padding
margin
outline
border
outline
tv
all
voice
print
braille
tty
embossed
voice
voice
is not a valid media type. Though there is a speech
media type.
font-family
property. Three of them are listed below. What are the other two generic font family values? serif
sans-serif
monospace
cursive
fantasy
color
property value of the selected element/elements?currentColor
background-color
and the border
color will be equal to the color property value of .box
elements:.box {
color: green;
background-color: currentColor;
border: 1px dashed currentColor;
}
The benefit of using the currentColor
keyword is that we only need to change the color value in one place. We can just change the value of the color
property, and the change will cascade to the other properties. This keyword works much the same way as CSS variables.ch
turn
px
ems
dpcm
s
hz
rem
ems
ch
and rem
are font-relative length units.turn
is an angle unit.px
is an absolute length unit.dpcm
is a resolution unit.s
is a time unit.hz
is a frequency unit.blanchedalmond
dodgerblue
peachpuff
orchidblack
navajowhite
tomato
orchidblack
@charset
@charset
rule.