CSS margin-top 속성으로 컨텐츠 위로 보내기

버건디·2022년 12월 22일
0

CSS

목록 보기
13/19
post-thumbnail

🔍 margin-top 속성 없을때

.summary {
    text-align: center;
    width: 800px;
    position: relative;
    margin: auto;
    background-color: #383838;
    /* margin-top: -100px; */
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0px 1px 18px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.summary h2{
    margin-bottom: 20px;
    font-size: 35px;
}

.summary p{
    margin-bottom: 20px;
}


🔍 margin-top 속성 있을때

.summary {
    text-align: center;
    width: 800px;
    position: relative;
    margin: auto;
    background-color: #383838;
    margin-top: -100px;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0px 1px 18px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.summary h2{
    margin-bottom: 20px;
    font-size: 35px;
}

.summary p{
    margin-bottom: 20px;
}
profile
https://brgndy.me/ 로 옮기는 중입니다 :)

0개의 댓글