css 질문입니당..
본문
.position > ul > li > a:after {content:'';display:block;margin:-5px auto 0;width:1px; border:10px solid transparent; border-bottom-color:#000}
이렇게 해서 a 태그 뒤에 윗방향 삼각형을 만들었는데
a태그에 올렷을때만 나오게 어떻게 할까요? ㅠㅠㅠ
.position > ul > li > a:hover .position > ul > li > a:after {content:'';display:block;margin:-5px auto 0;width:1px; border:10px solid transparent; border-bottom-color:#000}
이렇게 했더니 안나오네요 ㅠㅠㅜㅜ
!-->!-->답변 2
.position > ul > li > a:after {display: none;}
.position > ul > li > a:hover:after {display: block;}
.position > ul > li > a:hover
{content:'';display:block;margin:-5px auto 0;width:1px; border:10px solid transparent; border-bottom-color:#000}
답변을 작성하시기 전에 로그인 해주세요.