jquery.mobile-1.1.0.css 에 아래와 같은 코드를 추가해서 적용이 되게 하고 싶습니다!
________________________________________________________________________
.accordianMenu{
font:12px/20px 돋움;
color: #424242;
padding: 10px;
margin: 0;
}
.accordianMenu h1{
margin: 0;
font-size: 20px;
text-shadow: 2px 2px 2px #aeaeae;
}
.accordianMenu h2{
margin: 5px 0;
padding: 0;
}
.accordianMenu h2 a{
font-size: 15px;
display: block;
font-weight: normal;
color: #424242;
text-shadow: 2px 2px 2px #aeaeae;
text-decoration: none;
margin: 0;
padding: 10px;
background: #8f8f8f;
background: -moz-linear-gradient(top, #cecece, #8f8f8f);
background: -webkit-gradient(linear, left top, left bottom, from(#cecece), to(#8f8f8f));
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
}
.accordianMenu :target h2 a,
.accordianMenu h2 a:FOCUS,
.accordianMenu h2 a:HOVER,
.accordianMenu h2 a:ACTIVE
{
background: #2288dd;
background: -moz-linear-gradient(top, #6bb2ff,#2288dd);
background: -webkit-gradient(linear, left top, left bottom, from(#6bb2ff), to(#2288dd));
}
.accordianMenu p{
padding: 0 10px;
margin: 0;
height: 0;
overflow: hidden;
-moz-transition:height 0.5s ease-in;
-webkit-transition:height 0.5s ease-in;
-o-transition:height 0.5s ease-in;
transition:height 0.5s ease-in;
}
.accordianMenu :target p{
overflow: auto;
}
--------------------------------------------------------------------------------------------------------------
그냥 막상 붙여넣고 저장을 하면 실행이 안되요 j쿼리에 그냥 붙여넣고 저장만 하면 쓸수 있을지 알았는데;;
그게 아니었어요..ㅠㅠ 저걸 어떤식으로 넣어야 적용을 할 수 있는지 도움을 받고 싶습니다..
조언부탁드려요..ㅠㅠ