DEV Community

Cover image for Style healthy recipe site with css
Heggy Castaneda
Heggy Castaneda

Posted on • Updated on

Style healthy recipe site with css

Recipe site demo

Selector for p that also have a class of '.cook':

p.cook {
  color: green;
}

Select li inside of .ingredients class and style list item differently than its default value: list-style:

.ingredients li {
  list-style: square;
}

Top comments (0)