Using a descendant selector, select the two div
elements inside the div
with class cat-mouth
. Give it a width of 30px
, a height of 50px
, and a border of 2px solid #000
.
.cat-mouth div {
}
this will select thet class div …
1 Like