น้อย - การนำเข้า
คำอธิบาย
ใช้เพื่อนำเข้าเนื้อหาของไฟล์ LESS หรือ CSS
ตัวอย่าง
ตัวอย่างต่อไปนี้แสดงให้เห็นถึงการใช้การนำเข้าในไฟล์ LESS -
<html>
<head>
<title>Less Importing</title>
<link rel = "stylesheet" type = "text/css" href = "style.css" />
</head>
<body>
<h1>Example using Importing</h1>
<p class = "myclass">LESS enables customizable,
manageable and reusable style sheet for web site.</p>
<p class = "myclass1">It allows reusing CSS code and
writing LESS code with same semantics.</p>
<p class = "myclass2">LESS supports creating cleaner,
cross-browser friendly CSS faster and easier.</p>
</body>
</html>
ตอนนี้สร้างไฟล์myfile.less
myfile.less
.myclass {
color: #FF8000;
}
.myclass1 {
color: #5882FA;
}
ตอนนี้สร้างไฟล์style.less
style.less
@import "http://www.tutorialspoint.com/less/myfile.less";
.myclass2 {
color: #FF0000;
}
myfile.lessไฟล์ซึ่งจะถูกนำเข้ามาในstyle.lessจากเส้นทางhttps://www.tutorialspoint.com/less/myfile.less
คุณสามารถคอมไพล์ไฟล์style.lessเป็นstyle.cssโดยใช้คำสั่งต่อไปนี้ -
lessc style.less style.css
ดำเนินการคำสั่งดังกล่าว มันจะสร้างไฟล์ style.cssโดยอัตโนมัติด้วยรหัสต่อไปนี้ -
style.css
.myclass {
color: #FF8000;
}
.myclass1 {
color: #5882FA;
}
.myclass2 {
color: #FF0000;
}
เอาต์พุต
ทำตามขั้นตอนเหล่านี้เพื่อดูว่าโค้ดด้านบนทำงานอย่างไร -
บันทึกรหัส html ด้านบนในไฟล์ importing.html ไฟล์.
เปิดไฟล์ HTML นี้ในเบราว์เซอร์ผลลัพธ์ต่อไปนี้จะปรากฏขึ้น