Reputation: 9543
If I look at the elements, I see 2 times a style:
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
?>
Upvotes: 0
Views: 69
Reputation: 6337
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.
Upvotes: 0
Reputation: 83
Make sure that you opened the same file.
Please provide me the Dom element which is showing two styles.
Upvotes: 1