これが私のコードのフィドルです: http://jsfiddle.net/ZWQpb/
HTMLは次のとおりです。
<div class="blog-entry">
<ol>
<li><h4 class="title"><a href="">10 moments in cinematic history changing thus</a></h4></li>
<li><h4 class="title"><a href="">Testing this theme with image</a></h4></li>
<li><h4 class="title"><a href="">More experimental things and more</a></h4></li>
<li><h4 class="title"><a href="">The video that defined a new definition</a></h4></li>
</ol>
</div>
そしてCSS:
body {
padding: 50px;
}
.blog-entry {
padding-left: 32px;
position: relative;
width: 248px;
}
.blog-entry ol {
color: #999999;
font: italic 3em Arial,sans-serif;
list-style-type: decimal;
}
.blog-entry h4.title {
color: #48423F;
font-family: Arial,sans-serif;
font-size: 16px;
padding-left: 25px;
padding-right: 33px;
text-shadow: none;
}
各リスト項目を番号の上から揃えたい。例として、次の図を見てください。
これどうやってするの?フィドルを自由に更新してください: http://jsfiddle.net/ZWQpb/