Bootstrap must-learn tables every day_javascript skills
WBOY
Release: 2016-05-16 15:30:44
Original
1055 people have browsed it
This article mainly explains tables. This is actually not unfamiliar to people who have done websites, and it can be said to be the most commonly used display of various lists. Sometimes it is also felt due to the needs of users or bosses. Headache. Let's take a look at what types of tables Bootstrap has prepared for us? As shown below:
1.Basic case
2. Striped table
3. Table with borders
4. Mouseover
5. Compression table
6. Status class
7. Responsive form
8. Summary
Basic case
Adding .table to any
tag gives it a basic style—a small amount of padding and a horizontal divider. This approach looks very redundant! ? However, we feel that the table element is widely used, and if we give it a default style, it may affect plug-ins such as calendar and date selection, so we chose to separate its style.
Use .table-striped to add a zebra stripe style to everything within
.
Add another style class to the table element in the example above
Looking at the current effect, there are still some changes.
Table with borders
Use .table-bordered to add borders to the table and each cell within it.
Or add another style class to the table element in the first example
Mouseover Use .table-hover to make each row in
respond to the mouse hover state.
Move the mouse to that line and it will have the effect
Compact table Use .table-condensed to make the table more compact, and the padding in the cells will be reduced by half.
This effect is not that obvious, mainly because the padding of the content in the cell is reduced by half.
Status Class
Colors can be set for licensed cells through these status classes.
Responsive form Wrap any .table in .table-responsive to create a responsive table that will scroll horizontally on small screen devices (less than 768px). When the screen is larger than 768px width, the horizontal scrollbar disappears.
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