Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuarasino/5e1ef5dbae3c67d6000accefb7cb24c5 to your computer and use it in GitHub Desktop.
Save yuarasino/5e1ef5dbae3c67d6000accefb7cb24c5 to your computer and use it in GitHub Desktop.
/* アイコン画像を任意の画像にするCSS */
#author-photo {
position: relative;
}
#author-photo::after {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
/* urlの中を変更すると任意の画像にできるよ */
background-image: url("https://pbs.twimg.com/profile_images/1519100744338907136/zf9Yw_T1_400x400.jpg");
background-size: contain;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment