Created
December 6, 2019 11:51
-
-
Save wastu01/c1709e5e7cc5d3eefbfcf9be4a0a69d9 to your computer and use it in GitHub Desktop.
RWD 基本語法
This file contains 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
@media screen and (min-width:481px){ | |
#div03 { | |
width: calc((100% - 10px)/2); | |
height: 300px; | |
float: left; | |
} | |
#div05 { | |
clear: both; | |
} | |
#div04 { | |
width: calc((100% - 10px)/2); | |
height: 300px; | |
float: right; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment