Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS에서 의사 클래스와 의사 요소의 차이점 - 2020 - 다른 사람

<시간/>

의사 등급

의사 클래스는 :hover, :active, :last-child 등과 같은 선택기의 상태를 나타냅니다. 단일 콜론(:)으로 시작합니다.

CSS 의사 클래스의 구문은 다음과 같습니다 -

:pseudo-class{
   attribute: /*value*/
}

의사 요소

유사하게, 유사 요소는 ::after, ::before, ::first-line 등과 같은 가상 요소를 선택하는 데 사용됩니다.

이중 콜론(::)으로 시작합니다.

CSS 의사 요소의 구문은 다음과 같습니다 -

::pseudo-element{
   attribute: /*value*/
}

예시

다음 예는 CSS 의사 클래스 및 의사 요소 속성을 보여줍니다.

<!DOCTYPE html>
<html>
<head>
<style>
a:hover{
   padding: 3%;
   font-size:1.4em;
   color: tomato;
   background: bisque;
}
</style>
</head>
<body>
<p>You're somebody else</p>
<a href=#>Dummy link 1</a>
<a href=#>Dummy link 2</a>
</body>
</html>

출력

이것은 다음과 같은 결과를 생성합니다 -

CSS에서 의사 클래스와 의사 요소의 차이점 - 2020 - 다른 사람

예시

<!DOCTYPE html>
<html>
<head>
<style>
p::after {
   content: " BOOM!";
   background: hotpink;
}
p:last-child {
   font-size: 1.4em;
   color: red;
}
</style>
</head>
<body>
<p>Anymore Snare?</p>
<p>Donec in semper diam. Morbi sollicitudin sed eros nec elementum. Praesent eget nisl vitaeneque consectetur tincidunt. Ut molestie vulputate sem, nec convallis odio molestie nec.</p>
<p>Hit</p>
<p>Pop</p>
</body>
</html>

출력

이것은 다음과 같은 결과를 생성합니다 -

CSS에서 의사 클래스와 의사 요소의 차이점 - 2020 - 다른 사람