css에서 클릭시 ..
본문
css에서 클릭시(선택된글자) 글자색상을 변경하고 싶습니다.
마우스를 올릴경우 변경되는건 hover
그 외에 link active 는 알고 있는데
클릭시 글씨 색이 변경되어 있는건 어떻게 하나요??
답변 3
<style>
.current_page { color:#000;}
</style>
<a href="<?php echo G5_BBS_URL?>/board.php?bo_table=notice"<?php if($bo_table=='notice') { echo ' class="current_page"'; ?>>공지사항</a>
위에 답변들이 아니라면 이걸 원하시는 듯 보입니다만..
<div id="bottommenu"> <a href="http://sexymun.cafe24.com/index.php" class="attribute-value">index.php">홈으로</a> | <a href="http://sexymun.cafe24.com/m_page.php?ps_pname=page_use" class="attribute-value">m_page.php?ps_pname=page_use">이용안내</a> | <a href="http://sexymun.cafe24.com/m_page.php?ps_pname=page_member2" class="attribute-value">m_page.php?ps_pname=page_member2">이용약관</a> | <a href="http://sexymun.cafe24.com/m_page.php?ps_pname=page_private2" class="attribute-value">m_page.php?ps_pname=page_private2">개인정보취급방침</a> | <a href="http://sexymun.cafe24.com/m_etc_write.php" class="attribute-value">m_etc_write.php">제휴문의</a> | <a href="http://sexymun.cafe24.com/m_board.php?ps_db=qna" class="attribute-value">m_board.php?ps_db=qna">질문과답변</a> | <a href="http://sexymun.cafe24.com/m_board.php?ps_db=faq" class="attribute-value">m_board.php?ps_db=faq">자주있는질문</a> | <a href="http://sexymun.cafe24.com/m_estimate.php" class="attribute-value">m_estimate.php">온라인견적서</a> | <a href="http://sexymun.cafe24.com/m_sitemap.php" class="attribute-value">m_sitemap.php">사이트맵</a> </div>
#bottommenu {width: 1200px; margin: 0 auto; color: #ffffff; line-height: 33px; font-family: "Malgun Gothic";}
#bottommenu a:link {color:#ffffff; text-decoration:none;} /*일반 상황*/
#bottommenu a:visited {color:#ffffff; text-decoration:none;} /*방문후 상황*/
#bottommenu a:hover {color:#ff5500; text-decoration:none;} /*마우스 올렸을 때의 상황*/
#bottommenu a:focus {color:#ff5500; text-decoration:none;} /*단축키를 눌러 포커스되는 상황*/
#bottommenu a:active {color:#ff5500; text-decoration:none;} /*클릭했을 때의 상황*/
위에서처럼 css 만으로도 폰트색상을 변경하실 수 있을 것 같습니다. ㅎㅎ
visited:색상
답변을 작성하시기 전에 로그인 해주세요.