Created
January 2, 2018 11:58
-
-
Save mrkkr/e69cdf2d69ca74e286d6fddf370bd412 to your computer and use it in GitHub Desktop.
Prosty accordion w czystym CSS #html #css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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