From 3ec4e7a07354b267e395923010dc879c3ccfa0ec Mon Sep 17 00:00:00 2001 From: PedroGuilherme <46846354+pedroguilhermelima@users.noreply.github.com> Date: Fri, 5 Apr 2019 23:52:12 -0300 Subject: [PATCH] Update skeletion.css 1. Change .six.columns { width: 48%; } to .six.columns { width: 48%; margin-left: calc(50% - 24%); } Note: If you want center, middle, vertical-align:middle. Answer in : https://stackoverflow.com/questions/55544528/how-to-center-align-vertically-to-center-and-middle-with-skeleton-css-boilerpla --- css/skeleton.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/skeleton.css b/css/skeleton.css index f28bf6c..871670c 100644 --- a/css/skeleton.css +++ b/css/skeleton.css @@ -65,7 +65,7 @@ .three.columns { width: 22%; } .four.columns { width: 30.6666666667%; } .five.columns { width: 39.3333333333%; } - .six.columns { width: 48%; } + .six.columns { width: 48%; margin-left: calc(50% - 24%); } /* if you want center, middle, vertical-align: middle */ .seven.columns { width: 56.6666666667%; } .eight.columns { width: 65.3333333333%; } .nine.columns { width: 74.0%; }