如何向<ul>标签添加新的CSS类?</ul>

时间:2014-02-14 13:32:57

标签: css wordpress class html-lists

我想在wordpress中的Page / Post创建页面中为默认<ul>窗口小部件分配一个新的CSS类。我怎样才能做到这一点?

见下图。

enter image description here

1 个答案:

答案 0 :(得分:2)

您只需为<ul>创建并上传themes/themename/style.css的新样式规则,并在ul.new-style { /* styles */ } 中为其指定类名。

示例

<ul class="new-style">
    <li>Item 1</li>
    <li>Item 2</li>
</ul>

然后使用编辑器上的“文本”视图添加HTML列表。

enter image description here

示例

<ul style="list-style-type: disc;">

如果您想要快速修复,还可以硬编码样式:{{1}}