当前位置:  开发笔记 > 后端 > 正文

Bootstrap Customization:我为什么要使用LESS?

如何解决《BootstrapCustomization:我为什么要使用LESS?》经验,为你挑选了1个好方法。

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

但是,我还没有确定使用LESS而不是简单CSS覆盖的特定优势(性能和其他方面).似乎最终LESS被编译为CSS.看起来LESS将引入更多的维护/重新编译任务,因为引入了新版本的Bootstrap.

我知道可以在'bootstrap.css'之后使用自定义'theme.css'来完成Bootstrap自定义.所以,如果你想改变.navbar颜色,我只需要在'theme.css'中加几行就像..

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

然后标记看起来像:

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



1> woz..:

很少抽象出像这样的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文件中的某处,看起来像上面的混乱将自动更新.

推荐阅读
臭小子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有