search
HomeWeb Front-endHTML TutorialBootstrap customization (2) less basic syntax_html/css_WEB-ITnose

I spent a day looking at less a few days ago. I have been tinkering with other things these days, and the project is also in progress. Today I will spend some time sorting out the basic syntax of less, and also share the actual practice. Some of my experiences are shared with everyone.

In this article, the author starts with the basic syntax of less, and uses the logical structure of bootstrap to sort out the syntax of less, so as to facilitate rapid development in the future.

1. Variables

Similar to many background editing syntaxes, less also has its own variables, but the variables in less are more precise It is a constant, and its value never changes once it is assigned.

@font-size:14px;

p{font-size:@font-size}

-->p{font-size:14px}

As mentioned before, the variables.less file of the bootstrap source code defines all variables, and the less files corresponding to other components use the variables defined by them, and they are managed uniformly.

variables.less is as shown below. If we want to simply customize bootstrap, just modify a few variable definitions.

2. Comments

Less comments are the same as many backend languages.

Line comments: //xxxx

Block comments: /*xxxx

                                                                       >

@import "xxx";

@import syntax imports other files, such as defined variables, bootstrap takes full advantage of this, let's take a look at bootstrap.less Source code.

As mentioned before, the bootstrap file introduces all the less files, and finally compiles this file directly.

Looking at the source code, you can see that the first reference is variables.less, which is the definition of all variables.

Secondly, mixins.less is introduced, and mixins.less imports all the mixing function definitions, which are used in the later component less.

This is equivalent to backend languages ​​such as c# first importing class libraries.

4. Mix

.border{

border:1px solid solid;

}

.header{

height:200px;

.border;

}

-->.header{

border:1px solid solid;

height:200px;

}

The best thing about blending is that you don’t have to write it over and over again It is a repeated style and can be quoted at will.

5. Nesting

.header{

 xxx;

 .header-body{ &:hover {

 xxx3;

 }

}

-->

.header{xxx}

.header .header-body{xxx1}

.header .header-footer{xxx2}

.header:hover{xxx3}

Smart people can probably figure it out' The role of &' is right? & represents the parent selector, which is equivalent to the .parent() method in jquery.

Nesting can be found everywhere in bootstrap, below is an example of .btn button style.

5. Media Inquiries

Bootstrap is very successful in large part because of its Response support, which is inseparable from media queries.

@media(min-width>768px){

ssss;

}

@ media(min-width>970px){

ssss;

}

grid.less responds to different mixing properties of different screens.

As shown in the picture below.

6. Function

Like all programming languages, less also has its own function library.

For example:

darken(@color,@amout)//Reduce the color brightness by a certain value

Parameters:

@color: A color object (A color object)

@amount: Percentage 0-100%

Return value: Color (color)

For example Bootstrap's default link hover style reduces the brightness by 15%.

As shown in the picture.

7. Operations
  • Any numerical value, color and variable can be operated. Here are a pair of examples:

    @base: 5%;

    @filler: @base * 2;//Multiplication

    @other: @base @filler;// Addition

    color: #888 / 4;//Division

    background-color: @base-color #111;

    height: 100% / 2 @filler;/ /Comprehensive operation

    Another feature of less operation is that it can automatically calculate the unit. This is a feature that many backend programming languages ​​do not have and is worthy of praise.

    @var: 1px 5;

    In this example Less will use this unit in the final output - 6px

    One of the bootstrap A typical application is that the width of various screen terminal devices is equal to the defined width grid flow width, and this grid flow width will be used as the left and right padding.

    8. Namespace

    #bundle {

     .button {

     display: block; border: 1px solid black; background-color : gray; &:hover { background-color: white }

     }

      .tab { ... }

      .citation { ... }

    }

    Now we want to mix in the .button class in #header a.

    Have some students thought of mixing as mentioned before, but this involves a namespace issue, which is the same as the method in language libraries such as c#. The same method may be defined in the two class libraries , this time it is necessary to distinguish through namespace, which is a bit like java packaging.

    Okay, this is how we should use it at this time.

    #header a {

    color: orange;

    #bundle > .button;

    }

    9. Scope

    This is equivalent to the member variables and local variables in languages ​​​​such as c#. Those who are familiar with such languages ​​​​can skip this knowledge point.

    @var: red;

    #page {

    @var: white;

    #header {

    ; // At this time, the color attribute of #header is white

      }

    }

    commonly used in bootstrap is about 1--7 points , the last two points are a bit tasteless.

    Of course these 9 points are only the most basic syntax of less. If you want to use these to customize a better bootstrap theme, it is not enough, but simple basic modifications can still be done easily.

    It’s a bit hard to exercise at night, the weather is very hot, and I’m a little tired after staying up until this point, so some examples use official examples, sorry.

    I wish everyone a happy play and happy learning.

    The next article will explain the more advanced syntax of less, so stay tuned

    Please indicate the source when reprinting this article

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    如何快速把你的 Python 代码变为 API如何快速把你的 Python 代码变为 APIApr 14, 2023 pm 06:28 PM

    提到API开发,你可能会想到DjangoRESTFramework,Flask,FastAPI,没错,它们完全可以用来编写API,不过,今天分享的这个框架可以让你更快把现有的函数转化为API,它就是Sanic。Sanic简介Sanic[1],是Python3.7+Web服务器和Web框架,旨在提高性能。它允许使用Python3.5中添加的async/await语法,这可以有效避免阻塞从而达到提升响应速度的目的。Sanic致力于提供一种简单且快速,集创建和启动于一体的方法

    PHP基础教程:从入门到精通PHP基础教程:从入门到精通Jun 18, 2023 am 09:43 AM

    PHP是一种广泛使用的开源服务器端脚本语言,它可以处理Web开发中所有的任务。PHP在网页开发中的应用广泛,尤其是在动态数据处理上表现优异,因此被众多开发者喜爱和使用。在本篇文章中,我们将一步步地讲解PHP基础知识,帮助初学者从入门到精通。一、基本语法PHP是一种解释性语言,其代码类似于HTML、CSS和JavaScript。每个PHP语句都以分号;结束,注

    PHP8.0中新的类型别名语法PHP8.0中新的类型别名语法May 14, 2023 pm 02:21 PM

    随着PHP8.0的发布,新增了一种类型别名语法,使得使用自定义的类型变得更加容易。在本文中,我们将深入了解这种新的语法,以及它对开发人员的影响。什么是类型别名?在PHP中,类型别名本质上是一个变量,它引用另一个类型的名称。这个变量可以像其他类型一样使用,并在代码中的任何地方声明。这种语法的主要作用是为常用的类型定义自定义别名,使得代码更加易于阅读和理解。

    Discuz导航栏个性化定制,让论坛更具特色!Discuz导航栏个性化定制,让论坛更具特色!Mar 11, 2024 pm 01:45 PM

    在Discuz论坛中,导航栏是用户访问网站时经常接触到的部分之一,因此定制导航栏可以为论坛增添独特的个性化风格,提升用户体验。接下来将介绍如何在Discuz论坛中进行导航栏的个性化定制,并提供具体的代码示例。首先,我们需要登录到Discuz的后台管理系统,进入“界面”->“导航设置”页面。在这个页面上,我们可以对导航栏进行各种设置和定制。以下是一些

    iOS 18 主屏幕自定义细节揭晓iOS 18 主屏幕自定义细节揭晓Mar 27, 2024 pm 05:40 PM

    iOS18主屏幕自定义细节揭晓随着2024年全球开发者大会(WWDC)的临近,科技界对iPhone创新领域的下一步充满期待。在备受期待的更新中,iOS18脱颖而出,尤其是其传闻中的增强功能,有望重新定义我们与设备交互的方式。如果您和我们一样兴奋,您会很高兴知道iOS18有望为iPhone定制带来重大进步,尤其是在主屏幕方面。在这些启示中处于领先地位的是马克·古尔曼(MarkGurman),他是一位值得信赖的苹果分析师,他的见解历来被证明是准确的。根据MarkGurman的说法,iOS18将是自i

    VSCode 中文设置:个性化你的编辑器VSCode 中文设置:个性化你的编辑器Mar 25, 2024 pm 05:00 PM

    标题:VSCode中文设置:个性化你的编辑器在如今的程序员工作中,一款强大、灵活且个性化的代码编辑器是必不可少的工具。VisualStudioCode(简称VSCode)作为一款免费开源的现代化代码编辑器,受到了广大开发者的喜爱。与许多软件一样,VSCode也支持多语言,包括中文。本文将介绍如何在VSCode中设置中文环境,让你的编辑器更加

    PHP8.0中的父类调用语法PHP8.0中的父类调用语法May 14, 2023 pm 01:00 PM

    PHP是一种广泛应用于Web开发的服务器端脚本语言,而PHP8.0版本中引入了一种新的父类调用语法,让面向对象编程更加方便和简洁。在PHP中,我们可以通过继承的方式创建一个父类和一个或多个子类。子类可以继承父类的属性和方法,并可以通过重写父类的方法来修改或扩展其功能。在普通的PHP继承中,如果我们想在子类中调用父类的方法,需要使用parent关键字来引用父

    个性化你的Eclipse界面:个性化背景颜色个性化你的Eclipse界面:个性化背景颜色Jan 28, 2024 am 09:24 AM

    定制你的Eclipse界面:设置背景颜色Eclipse是一款非常流行的Java集成开发环境(IDE),它提供了丰富的功能和插件支持。在使用Eclipse进行开发时,一个个性化的界面能够提升工作效率和舒适度。在本文中,我们将学习如何设置Eclipse的背景颜色,以满足个人喜好和需求。一、打开Eclipse并进入"Preferences"界面在Eclipse中,

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Tools

    EditPlus Chinese cracked version

    EditPlus Chinese cracked version

    Small size, syntax highlighting, does not support code prompt function

    VSCode Windows 64-bit Download

    VSCode Windows 64-bit Download

    A free and powerful IDE editor launched by Microsoft

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment

    MantisBT

    MantisBT

    Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use