묻고답하기
간단한 html이 안먹히네요.
2015.01.22 09:29
예전엔
<A onclick="window.open('http://aaaaa', '', 'width=500, height=510');return false;" href="#"style="text-decoration:none" target=_blank>
<DIV onmouseover="this.style.color='red'; this.style.fontSize='12'" style="FONT-SIZE: 12px; COLOR: #888888" onmouseout="this.style.color='888888'; this.style.fontSize='12'">ㄱㄱㄱㄱㄱ</div></a>
이렇게 하면,
레이아웃이나 게시판에서 글씨에 마우스 대면 색이 변하고 아닐땐 지정한 색으로 되었던 것 같은데
지금 해보니 전혀 안먹히네요.
밑줄 없애거나 새창은 되는데 글씨 색이 안먹히네요. 뭐가 잘못된 것 인지요?
댓글 4
-
ssari.myid.net
2015.01.22 10:31
-
중년-
2015.01.22 11:08
그렇군요.^^ 감사합니다. 그런데
<DIV onmouseover="this.style.color='red'; this.style.fontSize='12'" style="FONT-SIZE: 12px; COLOR: #888888" onmouseout="this.style.color='#888888'; this.style.fontSize='12'">ㄱㄱㄱㄱㄱ</div>이것만 하면 글씨 색이 정상으로 변하는데
<A onclick="window.open('http://aaaaa', '', 'width=500, height=510');return false;" href="#"style="text-decoration:none" target=_blank>
<DIV onmouseover="this.style.color='red'; this.style.fontSize='12'" style="FONT-SIZE: 12px; COLOR: #888888" onmouseout="this.style.color='#888888'; this.style.fontSize='12'">ㄱㄱㄱㄱㄱ</div></a><a></a> 이것과 같이 하면 색이 안 변하네요. <a> 이게 뭔가 잘못 된것 같은데
뭐가 잘못 된 것인지요?
-
ssari.myid.net
2015.01.22 11:20
그럼 소스상 상위 style에 영향을 받을꺼같은데여..
<a href="#" onclick="window.open('http://aaaaa', '', 'width=500, height=510');return false;" target="_blank" onmouseover="this.style.color='red'; this.style.fontSize='12'" onmouseout="this.style.color='#888'; this.style.fontSize='12'" style="text-decoration:none; font-size:12px; color:#888">이런식으로 사용??</a>
이런식으로 사용해도 안변한다면 영향받는 전체소스를 알아야 수정가능할듯 하네여 ^^
-
중년-
2015.01.22 12:05
오! 되네요. 감사합니다.^^
onmouseout color에 #을 넣어주세여
<DIV onmouseover="this.style.color='red'; this.style.fontSize='12'" style="FONT-SIZE: 12px; COLOR: #888888" onmouseout="this.style.color='#888888'; this.style.fontSize='12'">ㄱㄱㄱㄱㄱ</div></a>