본문 바로가기
개발

원형 이미지 css html

by 전재경 2022. 11. 2.

보통의 이미지는 사각 박스인데

이처럼 대부분의 프로필은 원형 이미지를 가지고 있다

 

css

.box {
    width: 70px;
    height: 70px;
    border-radius: 70%;
    overflow: hidden;

}

.profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0px solid #000;
}

 

html

<div class="box" style="background: #BDBDBD;">
    <img class="profile" id="preview" src="">

 

 

 

불러온 사진이 꽉차게 원형 이미지를 만들수 있다.

'개발' 카테고리의 다른 글

API란 ?  (0) 2022.11.21
JWT토큰 이란 ?  (0) 2022.11.20
getElementById 사용  (0) 2022.10.21
Hash 함수, SHA256  (0) 2022.10.20
오류 - Uncaught SyntaxError: Unexpected token '{'  (0) 2022.10.13

댓글