1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-22 13:13:03 +02:00

New width and height utils

Adding 25%, 50%, and 75% to the mix for later use with cards
This commit is contained in:
Mark Otto
2016-12-22 16:37:18 -08:00
parent 736be8fca6
commit d4217ea137
2 changed files with 16 additions and 3 deletions

View File

@@ -1,6 +1,13 @@
// Width and height
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.mw-100 { max-width: 100% !important; }