duanbiaojin8860 2014-10-07 10:34
浏览 9
已采纳

不需要的2次样式元素与PHP页面

If I look at the elements, I see 2 times a style:

enter image description here

I was wondering, how can I prevent this?

This is my code:

<?php    
     header('Content-Type: text/html; charset=utf-8');    
?>    
<html>
    <head>    
        <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>    
        <style type="text/css"> 
            body {
                overflow: hidden;
                font-family: 'Roboto', sans-serif;
            }    
        </style>
    </head>
</html>    
<?php
   // more php code here
?>
  • 写回答

2条回答 默认 最新

  • dongou4052 2014-10-07 10:51
    关注

    It is most likely inserted by an extension in your browser. Google Chrome has certain extensions that do this, for example.

    If you look at the source code, it probably isn't there.

    You can check the source in Chrome using the shortcut CTRL + U for windows or ALT + CMD + U on mac.

    Let me know if this is the case.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?