1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-31 17:11:48 +02:00

Add display utility classes (.d-{inline,block,inline-block}); fixes #19343

Refs #19665
[skip sauce]
This commit is contained in:
Teo Dell'Amico
2016-04-02 14:11:18 -07:00
committed by Chris Rebert
parent 44c09cc07d
commit 1b35105852
3 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
//
// Display utilities
//
.d-block {
display: block !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-inline {
display: inline !important;
}