8

我正在考虑在我的 Bootstrap 编辑器 ( Bootply.com ) 中集成 LESS,以符合 Bootstrap定制最佳实践,并支持 mixins。

但是,我还没有确定使用 LESS 相对于简单的 CSS 覆盖的具体优势(性能和其他方面)。似乎最终LESS被编译为CSS。随着新版本的 Bootstrap 的引入,LESS 似乎只会引入更多的维护/重新编译任务。

我知道 Bootstrap 自定义可以在“bootstrap.css”之后使用自定义“theme.css”来完成。因此,如果您想更改 .navbar 颜色,我只需在“theme.css”中添加几行,例如......

.navbar-custom .navbar-inner {
   background-color:#444444;
}

然后标记看起来像:

<div class="navbar navbar-custom navbar-fixed-top">..

如果这不是定制的最佳实践,LESS 如何改进它?

4

1 回答 1

12

LESS 像这样抽象出 CSS 混乱:

background: #45484d; /* Old browsers */
background: -moz-linear-gradient(top,  #45484d 0%, #000000 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #45484d 0%,#000000 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #45484d 0%,#000000 100%); /* IE10+ */
background: linear-gradient(to bottom,  #45484d 0%,#000000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */

在您的情况下,导航栏具有渐变,因此您不能简单地更改背景颜色。如果你使用 LESS,你可以选择两种颜色,并且在 Bootstrap 的 CSS 文件中的某个地方,看起来像上面乱七八糟的东西会自动更新。

于 2013-05-09T12:47:35.753 回答