/* 自分用CSS */ | |
.balloon-icon-left { | |
width: 100px; | |
height: 100px; | |
float:left; | |
background: url("ここに画像のURLを記入する") no-repeat; | |
background-position:center center; | |
-moz-background-size:cover; | |
background-size:cover; | |
border-radius: 50px; | |
text-align: center; | |
} | |
/* 相手用CSS */ | |
.balloon-icon-right { | |
width: 100px; | |
height: 100px; | |
float:right; | |
background: url("ここに画像のURLを記入する") no-repeat; | |
background-position:center center; | |
-moz-background-size:cover; | |
background-size:cover; | |
border-radius: 50px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment