-
-
Save GingerBear/9399106 to your computer and use it in GitHub Desktop.
vertical and horizontal centering
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 characters
/* vertical and horizontal centering | |
method 1: absolute position + negative margin | |
h1 { | |
position: absolute; | |
width: 350px; | |
height: 50px; | |
left: 50%; | |
top: 50%; | |
margin-left: -175px; | |
margin-top: -25px; | |
}*/ | |
/*method 2: flexbox*/ | |
h1{ | |
display: flex; | |
flex-flow:row nowr | |
ap; | |
justify-content: center; | |
align-items: center; | |
height: 200px; | |
} |
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 characters
<div class="container"><h1>欢迎来学习HTML/CSS</h1></div> |
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 characters
// alert('Hello world!'); |
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 characters
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment