Table of Contents
2. Method 2
3. Method three
Home Web Front-end HTML Tutorial Attention to detail using Bootstrap v3.3.4 box-sizing_html/css_WEB-ITnose

Attention to detail using Bootstrap v3.3.4 box-sizing_html/css_WEB-ITnose

Jun 24, 2016 am 11:41 AM

1. Bootstrap style

In Bootstrap v3.3.4, there is the following reset style:

* {  -webkit-box-sizing: border-box;     -moz-box-sizing: border-box;          box-sizing: border-box;}*:before,*:after {  -webkit-box-sizing: border-box;     -moz-box-sizing: border-box;          box-sizing: border-box;}
Copy after login

Change the default box model box of all elements -sizing is set to border-box, and the standard default box model of modern browsers is content-box. Many other third-party UI libraries and third-party js libraries also use standard content-box.

Understanding this is important when writing certain functions, especially when combining other third-party libraries with bootstrap.

2. Example

Example: Make a div that expands and shrinks.

The code is as follows:

<!DOCTYPE html><meta charset="utf-8" /><!-- <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" /> --><style type="text/css">    #tabslide{        position: absolute;        width: 200px;        height: 400px;        background-color: green;        border:4px solid blue;        margin: 50px auto 0;        right: 0;    }    #fold{        position: absolute;        margin: -50px 0 0 0;    }</style><script src="js/jquery-2.1.4.min.js"></script><script type="text/javascript">function changeSize(){        if($("#tabslide").width() == 200){                $("#tabslide").css("width", "300px");                $("#fold").html("-unexpand");        }else{                $("#tabslide").css("width", "200px");                $("#fold").html("+expand");        }}</script><div id="tabslide">    <button id="fold" onclick="changeSize()" >+expend</button></div>
Copy after login

Effect: Click the "expand" button to increase the width of the div, and click the "-unexpand" button to reduce the width of the div.

Uncomment and introduce bootstrap.min.css, it will be invalid. The reason is the above

* {

box-sizing: border-box;

}

makes the width of div: 300px set the total width of border padding contentwidth, obtained by jquery It's still contentwidth, so it's invalid.

If you want to use the bootstrap framework, there are three solutions to the above problem:

1. Method 1

Place if in the js code (200 in $("#tabslide").width() == 200) is changed to 192.

This will be inconvenient for later maintenance, because the width you set is 200, but when judging, you have to judge the value obtained by subtracting the border from 200 and subtracting padding. When the border or padding is modified, it will become invalid and must be recalculated.

2. Method 2

Display the setting box-sizing:content-box in css

#tabslide{    ...    box-sizing:content-box;}
Copy after login

A little better than the first method , but if some styles of bootstrap are used related to box-sizing:border-box, changes need to be made.

3. Method three

Show and set box-sizing:content-box in js.

This method is recommended by me and has no worries.

Complete code:

<!DOCTYPE html><meta charset="utf-8" /><link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" /><style type="text/css">    #tabslide{        position: absolute;        width: 200px;        height: 400px;        background-color: green;        border:4px solid blue;        margin: 50px auto 0;        right: 0;/*    方法二    box-sizing:content-box;*/    }    #fold{        position: absolute;        margin: -50px 0 0 0;    }</style><script src="js/jquery-2.1.4.min.js"></script><script type="text/javascript">function changeSize(){        $("#tabslide").css("box-sizing", "content-box");//方法三        // if($("#tabslide").width() == 192){ //方法一        if($("#tabslide").width() == 200){                $("#tabslide").css("width", "300px");                $("#fold").html("-unexpand");        }else{                $("#tabslide").css("width", "200px");                $("#fold").html("+expend");        }}</script><div id="tabslide">    <button id="fold" onclick="changeSize()" >+expend</button></div>
Copy after login

3. Digression

In the above code, expand is spelled incorrectly and is written as expand. I was originally going to revise it, but found out there were other issues, so I just vomited them here.

expand: means "expand".

expend: means "consumption".

Another point is that there is no word for "unexpand" at all. This is why I wrote this nonsense.

I specifically checked that the antonym of expand should be shrink: meaning "shrink".

[As informed by friends in the comments, "expand" and "collapse" are generally used. Hey, the English is so urgent~]

Because it was changed The code was written by someone else. I am very helpless. I just want to remind everyone that in the future, when writing code, try to write it in English. If you don’t understand it, just look it up. In this way, when others look at your code, they can at least learn more words instead of misleading others, such as "unexpand" here.

Statement of this Website
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

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles