日期:2014-05-18  浏览次数:20572 次

<head>这里的内容能一句一句解释下吗?</head>
好多意思都不明白 能每句解释最好了。
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<title>提示窗体</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">

<style type="text/css">
<!--
input
{
BACKGROUND-COLOR:;
BORDER-BOTTOM: ;
BORDER-LEFT: ;
BORDER-RIGHT: ;
BORDER-TOP: ;
COLOR: #000000;
FONT-SIZE: 12px
}
--></style>
<link rel="stylesheet" href="images/css.css" type="text/css">

------解决方案--------------------
--------------- 
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
--------------- 
上面好象是用来校验该页面的元素

<title>提示窗体 </title> 该网页的标题

--------------- 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
-------------- 
设置网页的编码格式为gb2312
还禁用了页面缓存

下面定义了一个CSS样式 
--------------- 
<style type="text/css">
<!--
input
{
BACKGROUND-COLOR:; 背景颜色
BORDER-BOTTOM: ; 离底部边框的距离 BORDER-LEFT: ; 离左边框的距离
BORDER-RIGHT: ; 离右边框的距离 
BORDER-TOP: ; 离上边框的距离
COLOR: #000000; 这个设置字体的颜色?你44就知道了
FONT-SIZE: 12px 字体大小}
--> </style>
---------------- 


引用了一个CSS文件“css.css”,在该页面里可以引用该文件里定义的样式
---------------- 
<link rel="stylesheet" href="images/css.css" type="text/css"> 
---------------- 

上面有点乱,又整了一下