Day024

RISK_TAKER·2023년 3월 6일

가상요소선택자
기준요소::before, 기준요소::after

	<style>
        p::after{
            content: '...';
            color: red;
        }
        p::before{
            content: "test-";
            color: blue;
        }
    </style>

가상클래스선택자
:link
:visited
:hover
:active
:focus
:disabled
:first-child
:last-child
:nth-child(n)

브라우저별로 적용되어 있는 기본 CSS스타일이 있다.(다르다)
스타일적용 우선순위가 있다.
인라인 > id > class
상속, 단위
rem: html 기준
html기준 16px , em 부모기준,

* {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
        }

0개의 댓글