HTML 및 CSS를 사용하여 아코디언 만들기
html로 시작하자
<details>
<summary>I am awesome</summary>
<p>Hi there this is an awesome paragraph</p>
</details>
<details>
<summary>I am awesome</summary>
<p>Hi there this is an awesome paragraph</p>
</details>
<details>
<summary>I am awesome</summary>
<p>Hi there this is an awesome paragraph</p>
</details>
<details>
<summary>I am awesome</summary>
<p>Hi there this is an awesome paragraph</p>
</details>
이제 아코디언에 스타일을 지정해 보겠습니다.
html {
height: 100vh;
}
body {
height: 100%;
display: grid;
place-content: center;
font-family: 'Montserrat', sans-serif;
}
details {
background: mistyrose;
padding: 0;
width: 20rem;
background: #eee;
border-bottom: 1px solid #242424;
box-shadow: 0 2px 1px 2px #242424;
}
details:nth-child(1) {
border-top: 1px solid #242424;
}
details p {
background-color: #9effed;
padding: 1em;
margin-top: 0;
margin-bottom: 0;
}
details[open] {
background-color: #ddd;
}
details[open] summary~* {
animation: anim .5s ease-in;
}
summary {
padding: 1em;
margin: 0;
outline: none;
cursor: pointer;
}
details:hover{
background-color: #ddd;
}
@keyframes anim {
0% {
opacity: 0;
margin-top: -50px;
}
100% {
opacity: 1;
margin-left: 0;
}
}
결과:
Reference
이 문제에 관하여(HTML 및 CSS를 사용하여 아코디언 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/flyingduck92/creating-accordion-using-html-and-css-2f6j텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)