css 적용 문제에 대해...
본문
안녕하세요.
index.html 을 만들고, index.php에 덧입혀서 홈을 구성했습니다.
제 홈에 들어가서, footer 메뉴 보시면, 게시판5,6,7 이 있는데요.
그 게시판들을 마우스오버했을 때 두꺼운 밑줄이 가도록 css를 적용시켰거든요.
드림위버나 index.html 을 직접 클릭했을 때는 잘 적용되는 것이 왜 index.php에는 적용이 안되는 것일까요?
다른 스타일은 적용이 되는데요. 도움 부탁드립니다.
css 내용.
.footer_menu {
float: right;
height: 20px;
width: 300px;
margin-top: 15px;
}
.footer_menu ul {
list-style-type: none;
font-size: 15px;
font-weight: bold;
font-family: "맑은 고딕";
margin: 0px;
padding: 0px;
}
.footer_menu ul li {
display: inline;
font-size: 15px;
float: left;
margin-right: 10px;
margin-left: 10px;
padding-right: 10px;
line-height: 20px;
}
.footer_menu ul li a {
color: #FFF;
text-decoration: none;
}
.footer_menu ul li a:hover {
color: #FF6;
border-bottom-width: medium;
border-bottom-style: outset;
border-bottom-color: #FF6;
}
float: right;
height: 20px;
width: 300px;
margin-top: 15px;
}
.footer_menu ul {
list-style-type: none;
font-size: 15px;
font-weight: bold;
font-family: "맑은 고딕";
margin: 0px;
padding: 0px;
}
.footer_menu ul li {
display: inline;
font-size: 15px;
float: left;
margin-right: 10px;
margin-left: 10px;
padding-right: 10px;
line-height: 20px;
}
.footer_menu ul li a {
color: #FFF;
text-decoration: none;
}
.footer_menu ul li a:hover {
color: #FF6;
border-bottom-width: medium;
border-bottom-style: outset;
border-bottom-color: #FF6;
}
답변을 작성하시기 전에 로그인 해주세요.