Bookmark and Share

Lee's 程序人生

HTML CSS Javascript XML AJAX ATLAS C# C++ 数据结构 软件工程 设计模式 asp.net Java 数字图象处理 Sql 数据库
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

fieldset

Posted on 2008-06-13 11:06  analyzer  阅读(319)  评论(0)    收藏  举报
 1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
 2<html xmlns="http://www.w3.org/1999/xhtml">   
 3<head>   
 4<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />   
 5<title>几乎被设计师遗忘了的标签</title>   
 6<style type="text/css">   
 7fieldset {    
 8  width: 300px;    
 9  border: 1px solid #006600;    
10}
    
11legend {    
12  font-family: Verdana, Arial, Helvetica, sans-serif;    
13  font-size: 10px;    
14  font-weight: bold;    
15}
    
16ul {    
17  margin: 10px;    
18  padding: 0px;    
19  background-color: #FFFFCC;    
20}
    
21li {    
22  list-style: none;    
23  font-family: Verdana, Arial, Helvetica, sans-serif;    
24  font-size: 9px;    
25  line-height: 180%;    
26}
    
27
</style>   
28</head>   
29   
30<body>   
31<fieldset>   
32  <legend>Dascom News</legend>   
33  <ul>   
34  <li>Last Amish shooting victim to be released from hospital</li>   
35  <li>Last Amish shooting victim to be released from hospital</li>   
36  <li>Last Amish shooting victim to be released from hospital</li>   
37  <li>Last Amish shooting victim to be released from hospital</li>   
38  <li>Last Amish shooting victim to be released from hospital</li>   
39  </ul>   
40</fieldset>   
41</body>   
42</html>