Created
May 31, 2015 19:57
-
-
Save okproject/7c20d868eb261e16786c to your computer and use it in GitHub Desktop.
Revisions
-
okproject created this gist
May 31, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ <html> <head> <title>Wuhu</title> </head> <body> <div class="wrapper"> <div class="subDiv"></div> </div> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ // ---- // libsass (v3.2.4) // ---- body { width: 900px; height: 500px; border:dotted 1px green; } .wrapper { border:solid 1px blue; width:600px; display: block; line-height:300px; } .subDiv { border:solid 1px red; width:100px; vertical-align:middle; height:100px; display:inline-block; } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ body { width: 900px; height: 500px; border: dotted 1px green; } .wrapper { border: solid 1px blue; width: 600px; display: block; line-height: 300px; } .subDiv { border: solid 1px red; width: 100px; vertical-align: middle; height: 100px; display: inline-block; } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ <html> <head> <title>Wuhu</title> </head> <body> <div class="wrapper"> <div class="subDiv"></div> </div> </body> </html>