Advertisement
kalovski

Untitled

Feb 3rd, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. input[type=radio] {
  2. display: none;
  3. }
  4. label {
  5. position: relative;
  6. display: block;
  7. }
  8. label:after {
  9. content: "+";
  10. position: absolute;
  11. right: 1em;
  12. }
  13. input:checked + label:after {
  14. content: "-";
  15. }
  16. input:checked ~ .tab-content {
  17. height: 150px;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement