The main contents of this article are as follows: 1. Close button 2.Carets 3. Quickly set floating 4. Center the content area 5. Clear Floats 6. Show or hide content 7. Content for screen readers 8. Image Replacement 9. Summary Close button Can be used to make modal dialogs and alerts disappear by using an icon that symbolizes a close. Copy code The code is as follows: <button type="button" class="close" aria-hidden="true">×</button> Carets Use the caret to indicate the function and direction of the dropdown. Note that by default the caret is automatically inverted in the dropup menu. Copy code The code is as follows: <span class="caret"></span> Quick Setup Float These two classes allow page elements to float left and right. !important is used to avoid certain problems. You can also use these two classes like mixins. Copy code The code is as follows: <div class="pull-left">...</div> <div class="pull-right">...</div> Copy code The code is as follows: // Classes .pull-left { float: left !important; } .pull-right { float: right !important; } // Usage as mixins .element { .pull-left(); } .another-element { .pull-right(); } Do not use for navigation barsIf you are aligning components on a navbar, be sure to use .navbar-left or .navbar-right. See the navigation bar documentation for details. Center the content area Set the page element to display: block and center it by setting margins. Can be used as a mixin or a class. Copy code The code is as follows: <div class="center-block">...</div> Copy code The code is as follows: // Using as a class .center-block { display: block; margin-left: auto; margin-right: auto; } // Using as a mixin .element { .center-block(); } Clear Float Use .clearfix to clear floats of any page element. We used the micro clearfix by Nicolas Gallagher. Can also be used like a mixin. Copy code The code is as follows: <div class="clearfix">...</div> Copy code The code is as follows: // Mixin itself .clearfix() { &:before, &:after { content: " "; display: table; } &:after { clear: both; } } // Usage as a Mixin .element { .clearfix(); } Show or hide content The .show and .hidden methods can be used to force showing or hiding of any page element (including on screen readers). These two classes use !important to avoid conflicts. These two classes can only be used for block-level elements and can also be used as mixins. .hide still works, but it does not work with screen readers and has been marked as deprecated since v3.0.1. Please use .hidden or .sr-only. Additionally, you can use .invisible to toggle the visibility of only an element, which means its display is not modified and you can still affect elements in the document flow. Copy code The code is as follows: <div class="show">...</div> <div class="hidden">...</div> Copy code The code is as follows: // Classes .show { display: block !important; } .hidden { display: none !important; visibility: hidden !important; } .invisible { visibility: hidden; } // Usage as mixins .element { .show(); } .another-element { .hidden(); } Content for screen readers Use .sr-only to hide an element from all devices except screen readers. This class can also be used as a mixin. Copy code The code is as follows: <a class="sr-only" href="#content">Skip to main content</a> Copy code The code is as follows: // Usage as a Mixin .skip-navigation { .sr-only(); } Image Replacement Use .text-hideclass (also available as a mixin) to replace the text content of a page element with a background image. Copy code The code is as follows: <h1 class="text-hide">Custom heading</h1> Copy code The code is as follows: // Usage as a Mixin .heading { .text-hide(); } Summarize This article mainly talks about some special effects. For example, show and hide, eliminate floating, close buttons, etc. In some cases this may be useful. |
>>: Introduction to vim plugin installation under Linux system
I have learned some basic selectors of CSS before...
transform: scale(); Scaling will cause jitter in ...
What is bond NIC bond is a technology that is com...
When using justify-content:space-between layout, ...
Use event delegation to implement message board f...
A simple Linux guessing game source code Game rul...
background When performing a SQL query, I tried t...
<body> <div id="root"> <...
Login + sessionStorage Effect display After a suc...
Let's take a look at the code first <form ...
This article shares with you a small Demo that ad...
Implementation of regular backup of Mysql databas...
Installation Steps 1. Create a virtual machine 2....
Here is an example code for using regular express...
Basic concepts: Macvlan working principle: Macvla...