Skip to content

Instantly share code, notes, and snippets.

@mrkkr
Created January 2, 2018 11:58
Show Gist options
  • Save mrkkr/e69cdf2d69ca74e286d6fddf370bd412 to your computer and use it in GitHub Desktop.
Save mrkkr/e69cdf2d69ca74e286d6fddf370bd412 to your computer and use it in GitHub Desktop.
Prosty accordion w czystym CSS #html #css
<a href="#test">Kliknij tutaj</a>
<ul id="test" class="accordion-steps">
<li style="list-style-type: none;"><i class="fa fa-angle-right" aria-hidden="true"></i>EN 1888 dla wózków i spacerówek dziecięcych;</li>
<li style="list-style-type: none;"><i class="fa fa-angle-right" aria-hidden="true"></i>EN 716 dla łóżeczek turystycznych;</li>
<li style="list-style-type: none;"><i class="fa fa-angle-right" aria-hidden="true"></i>EN 12227 dla kojców;</li>
</ul>
<style>
.accordion-steps:target {
display: block;
}
.accordion-steps {
display: none;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment