[CSS] 인라인요소에서 블럭요소로

김지연·2022년 8월 22일
0

CSS

목록 보기
4/15
post-custom-banner

display: block; 를 쓰면 인라인요소를 블럭요소로 바꿀 수 있다
가로 세로 값을 가질 수 있게 됨

.box::after {
	content: "";
	display:block;
    width: 30px;
    height: 30px;
    backround-color: blue;
}

profile
Aspiring Front-end Developer

0개의 댓글