폰트 굵게 하려면 정보
폰트 굵게 하려면본문
폰트에 마우스 클릭시
글자가 굵게 하려는데요 소스좀 알려주시면 감사하겠습니다
아래는 글자를 크게하는데요 크게하는것 말고
글자가 노멀인상태에서 마우스를 대면 굵게<b>하려고 하거든요
<span class="normal" onmouseover="this.className=''normal" onmouseout="this.className='big'">
글자가 굵게 하려는데요 소스좀 알려주시면 감사하겠습니다
아래는 글자를 크게하는데요 크게하는것 말고
글자가 노멀인상태에서 마우스를 대면 굵게<b>하려고 하거든요
<span class="normal" onmouseover="this.className=''normal" onmouseout="this.className='big'">
댓글 전체
링크가 있는거면 저같은경우엔
<style>
a.aaaa:link, a:visited, a:active { text-decoration:none; color:#466C8A; }
a.aaaa:hover { font-weight: bold; color:#466C8A;}
</style>
<a href="" class="aaaa">ddddd</span>
<style>
a.aaaa:link, a:visited, a:active { text-decoration:none; color:#466C8A; }
a.aaaa:hover { font-weight: bold; color:#466C8A;}
</style>
<a href="" class="aaaa">ddddd</span>
<style type="text/css">
.normal {
font-weight: normal;
}
.big {
font-weight: bold;
}
</style>
<span onmouseover="this.className='big'" onmouseout="this.className='normal'">test</span>
.normal {
font-weight: normal;
}
.big {
font-weight: bold;
}
</style>
<span onmouseover="this.className='big'" onmouseout="this.className='normal'">test</span>
슈와이님 감사드려요^,^