Change the default style of bootstrap
I haven’t used bootstrap for a long time and have forgotten to modify the style according to my own needs. .
I added a new class as soon as I started, and rewritten the css style to overwrite the original style, but it actually didn't work. Because the priority of the selector is not considered. Some of these questions will be asked during interviews, but I have never been able to connect theory and practice.
My solution is to increase the weight through sub-selectors. Seeing that others also use IDs, I don’t like adding selectors with IDs.
Recall a wave of selectors and their priorities.
1. css selector
1. Tag selector (such as: body, div, p, ul, li)
2. Class selector (eg: class)
3. ID selector (eg: id)
4. Global selector (eg: * number)
5. Combined selectors (such as: .head .head_logo, note that the two selectors are separated by the space bar)
6. Descendant selectors (such as: #head .nav ul li Selector from parent set to descendant set)
7. Group selector div, span, img {color:Red} means that labels with the same style are displayed in groups
8. Inherit selector (such as: div p, note that the two selectors are separated by the space bar)
9. Pseudo-class selector (such as: link style, pseudo-class of a element , 4 different states: link, visited, active, hover.)
10. Attribute selectors for string matching (^ $ *Three types, corresponding to start, end, and inclusion respectively)
11. Sub-selector (such as: div>p, with greater than sign>)
12.CSS adjacent sibling selector (such as: h1 p, With a plus sign)
Related recommendations: "bootstrap Getting Started Tutorial"
2. Priority
When When you use the !important rule on a style declaration, the style declaration overrides any other declarations in CSS. IE6 does not support this attribute
The maximum weight of the inline style sheet is 1000; that is, adding style to the element tag in HTML, that is, inline style. This method will make the css difficult to manage, so it is not recommended.
The ID selector has a weight of 100; defined by one or more id selectors. For example, the #id{margin:0;}id selector will override the class selector.classname{margin:3pxl}
Class class selector has a weight of 10; it is composed of one or more class selectors, Attribute selector and pseudo-class selector definitions. For example, .classname{margin:3px} will cover div{margin:6px;}
The label selector weight is 1: defined by one or more type selectors. For example, div{marigin:6px;} overrides *{margin:10px;}
Wildcard selector: such as *{marigin:6px;}
Browser customization or inheritance weight value is 0.1
Summary sorting: !important > Inline style > ID selector > Class selector > Tag > Wildcard > Inheritance > Browser default properties
3. ! important
Using !important is a bad habit and should be avoided as much as possible, because it breaks the inherent cascading rules in the style sheet and makes debugging and finding bugs more difficult. When two conflicting declarations with the !important rule are applied to the same element, the declaration with greater precedence will be used.
Query experience:
Never use !important on site-wide css
Only when you need to cover the whole site or external css (such as referenced ExtJs or YUI ) in a specific page using !important
Never use !important
in your plugins To optimize consider using style rule priority to solve the problem instead of !important
The above is the detailed content of How to replace styles in bootstrap. For more information, please follow other related articles on the PHP Chinese website!

使用java的StringBuilder.replace()函数替换指定范围的字符在Java中,StringBuilder类提供了replace()方法,可以用来替换字符串中指定范围的字符。该方法的语法如下:publicStringBuilderreplace(intstart,intend,Stringstr)上面的方法用于替换从索引star

PyCharm是一款常用的Python集成开发环境,拥有丰富的功能和快捷键,能够帮助开发者提高编程效率。在日常的编程过程中,掌握PyCharm的替换快捷键技巧可以帮助开发者更快捷地完成任务。本文将为大家介绍PyCharm中一些常用的替换快捷键,帮助大家轻松提升编程速度。1.Ctrl+R替换在PyCharm中,可以使用Ctrl+R快捷键来进行替换操

PyCharm是一款功能强大的Python集成开发环境,具有丰富的功能和工具,能够极大地提高开发效率。其中,替换功能是开发过程中经常用到的功能之一,能够帮助开发者快速修改代码并提高代码质量。本文将详细介绍PyCharm的替换功能,并结合具体的代码示例,帮助新手更好地掌握和使用该功能。替换功能简介PyCharm的替换功能可以帮助开发者在代码中快速替换指定的文本

jQuery是一种经典的JavaScript库,被广泛应用于网页开发中,它简化了在网页上处理事件、操作DOM元素和执行动画等操作。在使用jQuery时,经常会遇到需要替换元素的class名的情况,本文将介绍一些实用的方法,以及具体的代码示例。1.使用removeClass()和addClass()方法jQuery提供了removeClass()方法用于删除

MySQL是一种常用的关系型数据库管理系统,它提供了多种函数来处理和操作数据。其中,REPLACE函数是用来替换字符串中的指定部分内容的。在本文中,将介绍如何在MySQL中使用REPLACE函数进行字符串替换,并通过代码示例来演示其用法。首先,我们来了解一下REPLACE函数的语法:REPLACE(str,search_str,replace_str)其

PyCharm是一款广受程序员欢迎的集成开发环境,它提供了强大的功能和工具,让编程变得更加高效和便捷。而在PyCharm中,合理设置和替换快捷键是提高编程效率的关键之一。本文将介绍如何在PyCharm中替换快捷键,让编程更加得心应手。一、为什么要替换快捷键在PyCharm中,快捷键可以帮助程序员快速完成各种操作,提高编程效率。然而,每个人习惯不同,有些人可能

PyCharm是广受开发者喜爱的Python集成开发环境,它提供了许多快速替换代码的方法,让开发过程更加高效。本文将揭秘PyCharm中几种常用的快速替换代码的方法,并提供具体的代码示例,帮助开发者更好地利用这些功能。1.使用替换功能PyCharm提供了强大的替换功能,可以帮助开发者快速替换代码中的文本。通过快捷键Ctrl+R或者在编辑器中右键点击选择Re

在Python中,我们可以使用一个名为openpyxl的第三方Python库将Excel中的一个单词替换为另一个单词。MicrosoftExcel是一个用于管理和分析数据的有用工具。使用Python,我们可以自动化一些Excel数据管理任务。在本文中,我们将了解如何使用Python在Excel中替换一个单词。安装openpyxl在Excel中替换Word之前,我们需要使用Python包管理器在系统中安装openpyxl库。要安装openpyxl,请在终端或命令提示符中输入以下命令。Pipinst


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
