css美化有序列表,贴出部分css代码
<ol >
<li>先涂粉底再涂防晒</li>
<li>先涂防晒再涂粉底</li>
</ol>
<!doctype html>
<html>
<head>
<title>CSS3 ordered list styles - demo</title>
<style>
body{
margin: 40px auto;
width: 500px;
}
/* -------------------------------------- */
ol{
counter-reset: li;
list-style: none;
*list-style: decimal;
font: 15px 'trebuchet MS', 'lucida sans';
padding: 0;
margin-bottom: 4em;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
ol ol{
margin: 0 0 0 2em;
}
/* -------------------------------------- */