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) に書き込む場合は、フィールドになどを使用しないでください。

あなたの投稿はこのように見えるべきです

 <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 に答える