Page 1 of 1

anchor 태그에서 class가 안되는듯...

Posted: 2004 03 18 18:41 52
by hareup
제가 제대로 몰라서 그러겠지만..
anchor 태그에서 class가 안되는듯합니다.
예를 들어
<head>
<style>
a.ex {
        font-family:"굴림";
        font-size:9pt;
        color:"#000000";
        text-decoration:none
}
</style>
</head>
<body>
<a href=# class=ex>example</a>
</body>
은 작동하질 않습니다.

하지만
<head>
<style>
a {
        font-family:"굴림";
        font-size:9pt;
        color:"#000000";
        text-decoration:none
}
</style>
</head>
<body>
<a href=#>example</a>
</body>
은 작동하더라구요..

class가 안되는거 아닌가해서요

Re: anchor 태그에서 class가 안되는듯...

Posted: 2004 03 18 22:13 30
by kheled
저는 제대로 동작하네요. 가장 기본적인 selector이니까요.

color: "#000000";

에서 따옴표는 없어야 됩니다.

Re: anchor 태그에서 class가 안되는듯...

Posted: 2004 03 19 13:06 25
by 박희만
제대로 동작하네용. 감사합니다.