-2

このコードは、作業中の Web サイトの別のページの iframe に読み込まれます。ただし、ページの背景を変更するはずの CSS が機能していません。これだけをロードしても(iframeではない場合のように)、背景が白くなります。何を与える?何か案は?

<!--Developed, Written, and Implemented by Henry Edward Quinn IV in May of 2012 for the a Company-->
<html xmlns="http://www.w3.org/1999/xhtml"  lang="en" xml:lang="en">

<head>
<title>More Text about Equipment</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
<!--This little bit of CSS styling is just to guarantee consistency.-->
body {background-color:#ebf0f3;
    font-family:Arial, Helvetica, sans-serif; }
</style>
</head>

<body>
<!--This page will be loaded into an iframe. Only what's in the body will be visible on whatever page this will ultimately be on.
Since we're just filling a text box, keep the content limited to a handful of <p> tags in order for things to stay simple.-->
<a href="PATH/equipment.txt" target="_parent">More Information</a>
<p>
We've got some equipment here that has such and such a purpose and is extremely useful in certain situations (like A, B, and C).
</p>
</body>

</html>
4

2 に答える 2

7

あなた<!-- comment -->が持っているCSSでは無効です:

<!--This little bit of CSS styling is just to guarantee consistency.-->

/* your comment */代わりに使用してください:

<style>
/*This little bit of CSS styling is just to guarantee consistency.*/
body {
       background-color:#ebf0f3;
       font-family:Arial, Helvetica, sans-serif; 
     }
</style>
于 2012-05-24T15:01:35.120 に答える
-2

タグ内に HTML コメントがあるためだと思います。コメントを削除すると、機能するはずです。または使用

/* このちょっとした CSS スタイリングは、一貫性を保証するためのものです。*/.

于 2012-05-24T15:15:20.760 に答える