[CSS] - overflow

조가든·2022년 9월 20일
0

css

목록 보기
10/14
post-thumbnail

overflow

부모요소와 자식요소의 관계에서 부모 요소가 동그라미 형태일때 부모요소에 overflow:hidden을 주면 자식요소도 그 모양을 따라간다.

.sns a {
    border: 5px solid #fff;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 30px;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.sns a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: blue;
    top: 0;
    left: 0;
}
profile
jo_garden

0개의 댓글