0

在 WordPress 中,我正在创建一个新帖子。在帖子的 HTML 部分中,我使用以下代码:

<html>
<head>
<style type="text/css">
body {color:red;}
h1 {color:#00ff00;}
p.ex {color:rgb(0,0,255);}
</style>
</head>

<body>
<h1>This is heading 1</h1>
<p>This is an ordinary paragraph. Notice that this text is red. The default text-color for a page is defined in the body selector.</p>
<p class="ex">This is a paragraph with class="ex". This text is blue.</p>
</body>
</html>

文本 h1 字体大小没有那么大,请帮助解决这个问题。

4

2 回答 2

1

在该<style>部分中,添加:

h1, p {font-size:14px}或您想使用的任何尺寸。

于 2012-05-16T13:22:58.087 回答
0

首先,如果您在 POST (html) 中写入内容,则不应在字段中使用 and so。

你的帖子应该看起来像这样

 <style type="text/css">
body {color:red;}
h1 {color:#00ff00;}
p.ex {color:rgb(0,0,255);}
</style>
</head>

<body>
<h1>This is heading 1</h1>
<p>This is an ordinary paragraph. Notice that this text is red. The default text-color for a page is defined in the body selector.</p>
<p class="ex">This is a paragraph with class="ex". This text is blue.</p>

但事实是为什么你不把你的 CSS 放到一个特定的 CSS 文件中呢?在你的主题的根目录中,你应该有一个默认的 style.css 可以使用。

另外,您是否可以检查您是否使用了 reset.css 或类似的东西会覆盖您在该字段中输入的内容?

于 2013-11-19T18:16:50.107 回答