Add flexbox prefixes to tests and radio demo

This commit is contained in:
James Simpson
2016-07-20 12:50:56 -05:00
parent 2f84932d11
commit d7ee66b956
2 changed files with 21 additions and 0 deletions
+9
View File
@@ -33,8 +33,17 @@ body {
position: relative; position: relative;
width: 100%; width: 100%;
height: 15%; height: 15%;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex; display: flex;
-webkit-flex-direction: column;
-webkit-box-direction: column;
-ms-flex-direction: column;
flex-direction: column; flex-direction: column;
-webkit-justify-content: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; justify-content: center;
padding-left: 5%; padding-left: 5%;
cursor: pointer; cursor: pointer;
+12
View File
@@ -71,9 +71,21 @@ body {
/* index.html */ /* index.html */
#container { #container {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex; display: flex;
-webkit-flex-direction: column;
-webkit-box-direction: column;
-ms-flex-direction: column;
flex-direction: column; flex-direction: column;
-webkit-justify-content: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; align-items: center;
} }