Last active
August 11, 2017 05:54
-
-
Save avdoshenkov/8d7888badeec3764fad4ab0e87ed1b78 to your computer and use it in GitHub Desktop.
Menu with image icon for li via ::before
This file contains 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
ul { | |
list-style: none; | |
} | |
ul li { | |
position: relative; | |
} | |
ul li:before { | |
content: ""; | |
position: absolute; | |
top: 50%; | |
left: 0; | |
transform: translateY(-50%); | |
display: block; | |
width: 30px; | |
height: 30px; | |
background-image: url(/); | |
background-size: cover; | |
background-repeat: no-repeat; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment