A Pen by Beibit Sakhanov on CodePen.
Last active
January 24, 2019 12:47
-
-
Save bsakhanov/f66f6f94013972a8342206ce08015d5e to your computer and use it in GitHub Desktop.
One-line adaptive reference list
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
<div class="raz"> | |
<a href="#">Красота</a> | |
<span> | |
<a href="#">Волосы</a> | |
<a href="#">Лицо</a> | |
<a href="#">Макияж</a> | |
<a href="#">Тело</a> | |
<a href="#">Косметология</a> | |
<a href="#">Диеты</a> | |
<a href="#">Фитнес</a> | |
</span> | |
</div> |
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
.raz a { | |
text-decoration: none; | |
vertical-align: middle; | |
} | |
.raz > a { | |
display: inline-block; | |
padding: .5em 0; | |
font-size: 2em; | |
} | |
.raz span { | |
display: inline-block; | |
padding: 0 1em 1em; | |
word-spacing: 1em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment