php에는 style가 안먹히나요?
본문
htm로 작업했을때는 마우스를 갖다대도 스타일이 먹혀서 밑줄이 안나타나게됬는데요,
php로 작업하니 스타일이 안먹히고 밑줄이 나오더라구요..
php는 원래 스타일이 안먹히나요?
head랑 head사이에 넣었던 style.
<style>
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
* {font-family:'Nanum Gothic', sans-serif;}
<style type="text/css">
<!--
a:link, a:visited, a:active, a:hover { text-decoration: none;}
-->
</style>
답변 2
모지 STYLE 안에 또 STYLE 이 들어 같네요??
아래와 같이....
<style type="text/css">
<!--
* {font-family:'Nanum Gothic', sans-serif;}
a:link, a:visited, a:active, a:hover { text-decoration: none;}
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
-->
</style>
</style>가 빠졌습니다.
<style type="text/css"> 위에 </style>를 넣어주시던지 이천이지님처럼 하나의 스타일로 구성하심 되겠네요.
답변을 작성하시기 전에 로그인 해주세요.