CSS to LESS 转换器最简单
这个免费的在线工具可让您将 CSS 文件转换为 LESS 文件。只需将您的 CSS 粘贴到下面的表格中,它就会立即转换为 LESS 无需下载或安装任何软件。自由
如何将 CSS 转换为 LESS?
第 1 步:选择您的输入。输入数据。
第 2 步:选择输出选项(可选) 输出选项。
第 3 步:生成输出。
CSS 到 LESS 转换器示例
CSS
.feature-url {
background: #f7f7f7;
text-align: center;
}
.feature-url li {
list-style: none;
display: inline-block;
margin: 2px;
border: 1px solid #e9ebee;
text-align: center;
}
.feature-url li a {
padding: 5px;
color: blue;
display: block;
min-width: 70px;
}
.feature-url li a i {
font-size: 20px;
}
.feature-url li a:hover {
text-decoration: none;
background: #e9ebee;
color: #222;
}
.feature-url li.active a {
background: #e9ebee;
color: #222;
}
较少的
@color1: #f7f7f7;
@color2: #e9ebee;
@color3: #222222;
.feature-url {
background: @color1;
text-align: center;
li {
list-style: none;
display: inline-block;
margin: 2px;
border: 1px solid @color2;
text-align: center;
a {
padding: 5px;
color: blue;
display: block;
min-width: 70px;
i {
font-size: 20px;
}
&:hover {
text-decoration: none;
background: @color2;
color: @color3;
}
}
&.active a {
background: @color2;
color: @color3;
}
}
}