Last active
April 16, 2021 06:51
-
-
Save wpweb101/f8d1dca8c684c242653088cc193c8d75 to your computer and use it in GitHub Desktop.
CSS Best Practices
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
body { | |
background-image: url("example.jpg"); /* Inline commenting */ | |
background-repeat: repeat-y; | |
} | |
/* Css for registration form*/ | |
.registration-form { | |
display: block; | |
position: relative; | |
font-size: 12px; | |
padding: 10px 5px 10px 5px; | |
} | |
.container, | |
.form-container, | |
.row { | |
padding: 15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment