Created
May 10, 2022 02:01
-
-
Save yuarasino/5e1ef5dbae3c67d6000accefb7cb24c5 to your computer and use it in GitHub Desktop.
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
/* アイコン画像を任意の画像にする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