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
.container { | |
display: block; | |
position: relative; | |
padding: 5px; | |
font-size: 12px; | |
color: #fff; | |
} |
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
.registration-form { | |
margin-left: 5px; | |
margin-right: 5px; | |
margin-top: 5px; | |
margin-bottom: 5px; | |
display: 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 characters
.registration-form { | |
margin: 5px; /* Right property value*/ | |
color: #fff; /* Shorten value*/ | |
display: block; /* small case*/ | |
} |
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
registrationForm { /* Don't use camelcase */ | |
background: #fff; | |
} | |
.registration_form { /* Don't use underscore */ | |
color: #000; | |
} | |
body div form.registration_form { /* Don't use over qualification */ | |
color: #000; | |
} | |
input[type=checkbox] { /* it should be type="checkbox" */ |
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
form.registration-form { | |
background: #fff; | |
color: #000; | |
} | |
input[type="checkbox"] { | |
margin: 10px; | |
} |
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
.selector, #container, #section { | |
background: #fff; | |
color: #000; | |
} |
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
.selector, | |
#container, | |
#section { | |
background: #fff; | |
color: #000; | |
} |
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
<br> | |
<hr> |