Bookmark and Share

Lee's 程序人生

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

定义li图片头

Posted on 2008-06-13 11:04  analyzer  阅读(795)  评论(0)    收藏  举报
 1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     
 2   
 3"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
 4<html xmlns="http://www.w3.org/1999/xhtml">   
 5<head>   
 6<style type="text/css">   
 7<!--    
 8body { font: 12px 宋体,Arial,Verdana,Tahoma,sans-serif; }    
 9ul { maring: 0; padding: 0; }    
10li {     
11list-style: none;    
12display: block;     
13width: 200px;    
14height: 20px;     
15line-height: 20px;    
16text-indent: 25px;    
17background: url(http://www.makewing.com/images/arrow_01.gif) left center no-repeat;    
18}
    
19-->   
20
</style>   
21</head>   
22<body>   
23<table>   
24<td height="100" valign="top">   
25<ul>   
26<li>测试第一项</li>   
27<li>测试第二项</li>   
28<li>测试第三项</li>   
29<li>测试第四项</li>   
30<li>测试第五项</li>   
31<li>测试第六项</li>   
32</ul>   
33</td>   
34</tr>   
35<tr>   
36<td height="100" valign="top">   
37<ul>   
38<li>测试第一项</li>   
39<li>测试第二项</li>   
40<li>测试第三项</li>   
41<li>测试第四项</li>   
42<li>测试第五项</li>   
43<li>测试第六项</li>   
44</ul>   
45</td>   
46</tr>   
47</table>   
48</body>   
49</html>