我已将此代码添加到扩展名为.php的网页
<?php include_once("cssheadertop.php")?>
<link rel="stylesheet" href="button.css">
<?php include_once("cssheaderbottom.php")?>
现在,cssheadertop.php包含以下代码
<head>
<meta charset="utf-8">
<title>8mags - CSS Lessons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../../bootstrap.min.css" media="screen">
<link rel="stylesheet" href="../../style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Coda' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
cssheaderbottom.php文件包含以下代码
<style>
page specific style here.
</style>
</head>
我想在
之间添加元描述和元关键字标签 <?php include_once("cssheadertop.php")?>
和
<?php include_once("cssheaderbottom.php")?>
就像我添加的链接标记一样。
它会在渲染或搜索引擎优化方面造成任何问题吗?
答案 0 :(得分:2)
除少数例外情况外,head
element中孩子的顺序无关紧要。
也就是说,像搜索引擎这样的消费者当然可以做他们想要的事情(例如,忽略每一个元素,只是为了它的乐趣),但讨论未指定消费者的可能行为在这里是偏离主题的。
例外情况: