리스트 태그에서 점, 블릿, 마크 없애기
<ul class="my_comment_ul">
    <li>안녕하세요</li>
    <li>반갑습니다</li>
</ul>
<style>
.my_comment_ul {
    list-style: none;
    padding-left: 0px;
}
</style>
<ul class="my_comment_ul">
    <li>안녕하세요</li>
    <li>반갑습니다</li>
</ul>
<style>
.my_comment_ul {
    list-style: none;
    padding-left: 0px;
}
</style>