フィドルを更新する方法はわかりませんが、必要なコードは次のとおりです。
jQuery
$(document).ready(retriveComments);
function retriveComments() {
$.get("https://gdata.youtube.com/feeds/api/videos/jofNR_WkoCE/comments", function (d) {
$(d).find("entry").each(function (_, entry) {
var author = $(entry).find("author name").text(),
comment = $(entry).find("content").text();
html = '<div class="videoComments"><div class="inner">';
html += '<p class="author">' + author + '</p>';
html += '<p class="comment">' + comment + '</p>';
html += '</div></div>';
$('#comments').append(html);
});
});
}
CSS
.videoComments {
margin-bottom: 20px;
}
.author {
font-size: 13px;
font-weight: bold;
color: grey;
}
.inner{ border: 1px solid red; display: inline-block; }
videoComments div 内に追加の 'inner' div を追加し、それに境界線を適用しました。
編集:フィドルを更新する方法を知っているかもしれません:http://jsfiddle.net/8JLH7/7/