Skip to content

Commit e00c2c0

Browse files
committed
less开始学习
1 parent 38b8940 commit e00c2c0

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

Less即学即用/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

Less即学即用/Less/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Title</title>
6+
<link rel="stylesheet" href="style/main.css">
7+
</head>
8+
<body>
9+
10+
</body>
11+
</html>

Less即学即用/Less/style/main.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@charset "UTF-8";
2+
body {
3+
background-color: #00d4b4;
4+
}

Less即学即用/Less/style/main.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@charset "UTF-8";
2+
3+
body{
4+
background-color: #00d4b4;
5+
}

0 commit comments

Comments
 (0)