Created
September 4, 2020 23:57
-
-
Save joelalejandro/17f699a944de5680b8e603308a0c9781 to your computer and use it in GitHub Desktop.
Uso de margin y padding
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
| * { box-sizing: border-box } | |
| .contenedor, .caja { | |
| border: 3px solid black; | |
| width: 200px; | |
| margin: 0 auto; | |
| } | |
| .contenedor { | |
| /* Espaciado hacia adentro */ | |
| padding: 1rem; | |
| } | |
| .caja { | |
| /* Espaciado hacia afuera */ | |
| margin: 1rem; | |
| border-color: red; | |
| } |
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="contenedor"> | |
| <div class="caja"> | |
| Texto | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment