<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
<style type="text/css">
input.cls
{
background-color:Silver;
width:auto;
height:auto;
}
div.cls
{
background-color:Yellow;
width:500px;
height:200px;
}
</style>
</head>
<body>
<input type="button" name="button_1" value="我是按钮" class="cls"/>
<input type="text" name="text_1" value="我是文本框" class="cls" />
<br />
<input type="button" name="button_1" value="我是按钮" class="cls"/>
<input type="text" name="text_1" value="我是文本框" class="cls" />
<br />
<div class="cls">
我是层!!!
</div>
<div>
<p>
<span>我是span</span>
</p>
</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
<style type="text/css">
input.cls
{
background-color:Silver;
width:auto;
height:auto;
}
div.cls
{
background-color:Yellow;
width:500px;
height:200px;
}
</style>
</head>
<body>
<input type="button" name="button_1" value="我是按钮" class="cls"/>
<input type="text" name="text_1" value="我是文本框" class="cls" />
<br />
<input type="button" name="button_1" value="我是按钮" class="cls"/>
<input type="text" name="text_1" value="我是文本框" class="cls" />
<br />
<div class="cls">
我是层!!!
</div>
<div>
<p>
<span>我是span</span>
</p>
</div>
</body>
</html>