본문 바로가기
Developer/HTML & JSP & CSS

[CSS] a테그

by 순수한소년 2016. 12. 15.
728x90
반응형

.dept02 a{font-weight:normal;}

.dept02 a:link {

    color: #666666;

    font-size: 11px;

    letter-spacing: -1px;

    line-height: 180%;

    text-decoration: none;

}

.dept02 a:visited {

    color: #666666;

    font-size: 11px;

    letter-spacing: -1px;

    line-height: 180%;

    text-decoration: none;

}


.dept02 a:active {

    color: blue;

    font-size: 11px;

    letter-spacing: -1px;

    line-height: 180%;

    text-decoration: none;

}

.dept02 a:hover {

    color: blue;

    font-family: "돋움";

    font-size: 11px;

    letter-spacing: -1px;

    line-height: 180%;

    text-decoration: none;

}

728x90
반응형