meta
标记是否需要包含在style
标记中(如CSS):
<head>
<style>
<meta name="title" content="Some text here" />
</style>
</head>
或这是好事:
<head>
<meta name="title" content="Some text here" />
</head>
答案 0 :(得分:3)
/
不是必需的(XHTML除外,您没有提及使用)/
,也不需要空格。答案 1 :(得分:2)
meta
标记必须在头部,并且不在style
标记中,style
标记仅用于内联CSS声明。
后者是正确的,但是大多数浏览器会忽略像/>
这样的问题,重要的是要注意meta
标签是void elements而HTML不是XML,所以最正确的答案是:
<head>
<meta name="title" content="Some text here" >
</head>
答案 2 :(得分:1)
即,以下是可以接受的:
1
<head>
<meta name="title" content="Some text here" />
<style>
/* CSS code here */
</style>
</head>
2
<head>
<meta name="title" content="Some text here">
<style>
/* CSS code here */
</style>
</head>