--- id: 5f3ef6e06d34faac0447fc44 title: Passo 61 challengeType: 0 dashedName: step-61 --- # --description-- Deixe o texto `Est. 2020` em itálico criando um seletor de classe `established` e, logo depois, dê a ele a propriedade `font-style` com o valor `italic`. # --hints-- Você deve usar um seletor `.established`. ```js const hasEstablished = new __helpers.CSSHelp(document).getStyle('.established'); assert(hasEstablished); ``` Você deve definir a propriedade `font-style` para `italic`. ```js const hasFontStyle = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['font-style'] === 'italic'); assert(hasFontStyle); ``` O seletor `.established` deve definir a propriedade `font-style` para `italic`. ```js const establishedFontStyle = new __helpers.CSSHelp(document).getStyle('.established')?.getPropertyValue('font-style'); assert(establishedFontStyle === 'italic'); ``` # --seed-- ## --seed-contents-- ```html Cafe Menu ``` ```css body { background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg); font-family: sans-serif; } --fcc-editable-region-- --fcc-editable-region-- h1, h2, p { text-align: center; } .menu { width: 80%; background-color: burlywood; margin-left: auto; margin-right: auto; padding: 20px; max-width: 500px; } h1, h2 { font-family: Impact, serif; } .item p { display: inline-block; } .flavor, .dessert { text-align: left; width: 75%; } .price { text-align: right; width: 25% } ```