20140808 html+js学习
时间:2014-08-08 15:26:56
收藏:0
阅读:208
1. background:url(Images/cry.png) 0 0 no-repeat
background:url(../images/list01.png) no-repeat 0 center;
的意思是 图像地址 不重复 水平位置0 垂直位置居中
2. 有序号的
<ol>
<li>test1</li>
<li>test2</li>
<li>test3</li>
</ol>
3. 无序号的:
<ul>
<li>test11</li>
<li>test12</li>
<li>test13</li>
</ul>
评论(0)