링크가 비워져있는 a 태그는 화면에 보이지 않도록 지정
<style>
a[href='']{ display: none; }
</style>
alt 태그가 비워져있는 img 태그는 화면에 보이지 않도록
<style>
img[alt='']{ display: none; }
</style>
링크가 비워져있는 a 태그의 커서는 화살표 모양으로
<style>
a[href='#none']{ cursor: defalut; }
</style>