更改 javascript 中的 CSSOM css 样式属性

Changing the CSSOM css style properties in javascript

我正在尝试使用 style.cssText 来显示使用 javascript 隐藏的段落。这是我的代码:

html:

<p class="toy-pictures-latest">Latest Toy Pictures</p>
         <p class="toy-pictures-greatest">Greatest Toy Pictures</p>

css:

.toy-pictures-latest{
    display: none;
}

.toy-pictures-greatest{
        display: none;
}

js:

toy-pictures-latest.style.cssText = 'display: inline;';

我也试过了

document.getElementById("toy-pictures-latest").style.cssText = 'display: inline;';

请看代码笔: Codepen

请告诉我应该如何解决这个问题。

js:

document.getElementById("toy-pictures-latest").style.display = "inline";

html:

<p id="toy-pictures-latest">Latest Toy Pictures</p>
  

css:

#toy-pictures-latest{
    display: none;
}