2016-07-18 8 views
-1

おそらく無知である私は自分自身がphpinfo()を呼び出すとhtmlページの本文の色を変更できないことに驚きました。phpinfoの背景色とバグを変更する24095

さらなる調査の結果、バグ24095(http://www.justskins.com/forums/24095-com-phpinfo-styles-25807.html)に関連していると考えられました。言い換えれば

これは動作しません。

<html> 
<head> 
    <title>My Page: info PHP</title> 
    <meta charset="UTF-8"> 
    <style> 

     body { background-color: darkGray;} 

     #presentation 
     { 
      width:500px; 
      height: 140px; 
      text-align: center; 
      color: lightGray; 
      margin: auto; 
      margin-top: 40px; 
      background-color: darkGray; 
     } 

    </style> 
</head> 
<body> 
     <div id='presentation'> 
      <h2>Info about PHP</h2> 
      <p> 
      See hereunder the current settings for your server 
     </div> 
     <? echo phpinfo(); ?> 
</body> 
</html> 

それでは、どのように私はphpinfo()を呼び出すときにページのボディカラーを変更できますか?

+0

私自身の答えを見てみることをお勧めします。あなたが気にしないなら、あなたにはあまりにも悪いです。 –

+0

驚くべきこと...ここで私が正当な時に回答した誰か(私の前のコメントを参照)は、私の投稿は無関係であり、投票したと主張したが、彼の最初のコメントは消えてしまった。 Thinkpol? –

答えて

0

このコードは、CSSに基づいてかなり単純な回避策です:

<html> 
<head> 
    <title>My Page: info PHP</title> 
    <meta charset="UTF-8"> 
    <style> 

     body { background-color: darkGray; margin: 0 0 0 0;} 

     #zPHP { background-color: darkGray; } 

     #presentation 
     { 
      width:500px; 
      height: 140px; 
      text-align: center; 
      color: lightGray; 
      margin: auto; 
      margin-top: -20px; 
      padding-top: 40px; 
     } 

    </style> 
</head> 
<body> 
    <div id='zPHP'> 
     <div id='presentation'> 
      <h2>Info about PHP</h2> 
      <p> 
      See hereunder the current settings for your server 
     </div> 
     <? echo phpinfo(); ?> 
    </div> 
</body> 
</html> 

それはいくつかのを助けることができると思います。