Skip to content

Instantly share code, notes, and snippets.

@avdoshenkov
Last active August 11, 2017 05:54
Show Gist options
  • Save avdoshenkov/8d7888badeec3764fad4ab0e87ed1b78 to your computer and use it in GitHub Desktop.
Save avdoshenkov/8d7888badeec3764fad4ab0e87ed1b78 to your computer and use it in GitHub Desktop.
Menu with image icon for li via ::before
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