Instagram 사이트를 클론 하면서 배운 '새로운' 부분 정리하기
<button id="heart-button"></button>
background
요소에 이미지 사진을 url("")
형태로 넣어준다 (끝에 꼭 no-repeat넣는것 중요!! 그렇게 해야 이미지가 반복되서 타일형태로 보여지지 않는다! background-position : center
border: none
하면 끝! (이렇게 쉬운걸 헤멤..) #heart-button {
/* display:block; */
background: url( "https://~~/heart.png" ) no-repeat;
background-size: 22px;
background-position: center;
height:40px;
width:40px;
border: none;
cursor: pointer;
}
이미지에 두가지 색의 border 입히기
아래 그림처럼 인스타에 스토리 버튼 효과
를 주기위해 찾아보았음!
html의 이미지 tag를 만들어 준다
<img class="img-photo-of-others" src="https://qwer.ff.6">
0 0 0 2px #fff,
여기서 2px이 첫번째 border의 굵기 두번째 요소가 색상이다. box-shadow: 0 0 0 2px #fff, 0 0 0 4px #DC387C;
.img-photo-of-others {
width: 32px;
height: 32px;
border-radius: 50%;
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #DC387C;
}
::after
기능을 사용하였다..footer-contents ul li a::after {
content: '\00B7';
margin: 0 .25em 0 .25em;
}