<div>
白から透明へのグラデーションで a を使用できます。
HTML
<div class="line">
<div class="fadeTop"></div>
<div class="content">
This is just a sample paragraph.
</div>
</div>
CSS
.fadeTop{
height:20px;width:100%;position:absolute;left:0; top:0;
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}
(この特定の状況では勾配ジェネレーターを使用しました)
それをチェックしてください:JSFiddle