LESS-중첩 규칙
기술
한 클래스의 속성을 다른 클래스에 사용할 수 있도록하고 클래스 이름을 속성으로 포함하는 CSS 속성 그룹입니다. LESS에서는 class 또는 id 선택기를 사용하여 CSS 스타일과 동일한 방식으로 mixin을 선언 할 수 있습니다. 여러 값을 저장할 수 있으며 필요할 때마다 코드에서 재사용 할 수 있습니다.
예
다음 예제는 LESS 파일에서 중첩 된 규칙의 사용을 보여줍니다-
<html>
<head>
<title>Nested Rules</title>
<link rel = "stylesheet" type = "text/css" href = "style.css" />
</head>
<body>
<div class = "container">
<h1>First Heading</h1>
<p>LESS is a dynamic style sheet language that extends the capability of CSS.</p>
<div class = "myclass">
<h1>Second Heading</h1>
<p>LESS enables customizable, manageable and reusable style sheet for web site.</p>
</div>
</div>
</body>
</html>
다음으로 style.less 파일을 만듭니다 .
style.less
.container {
h1 {
font-size: 25px;
color:#E45456;
}
p {
font-size: 25px;
color:#3C7949;
}
.myclass {
h1 {
font-size: 25px;
color:#E45456;
}
p {
font-size: 25px;
color:#3C7949;
}
}
}
다음 명령을 사용하여 style.less 파일을 style.css 로 컴파일 할 수 있습니다.
lessc style.less style.css
위의 명령을 실행하십시오. 다음 코드 를 사용하여 style.css 파일을 자동으로 생성합니다.
style.css
.container h1 {
font-size: 25px;
color: #E45456;
}
.container p {
font-size: 25px;
color: #3C7949;
}
.container .myclass h1 {
font-size: 25px;
color: #E45456;
}
.container .myclass p {
font-size: 25px;
color: #3C7949;
}
산출
위의 코드가 어떻게 작동하는지 보려면 다음 단계를 따르십시오.
위의 HTML 코드를 nested_rules.html 파일.
브라우저에서이 HTML 파일을 열면 다음 출력이 표시됩니다.