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 from github!'); |
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
| 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
| .ipad-only, | |
| .iphone-only, | |
| .retina-only, | |
| .non-retina-only, | |
| .retina-iphone-only, | |
| .non-retina-iphone-only | |
| display: none | |
| // iPad Only | |
| @media only screen and (device-width: 768px) |
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
| /* Currently used */ | |
| .container:after { | |
| content: '.'; | |
| visibility: hidden; | |
| height: 0; | |
| display: block; | |
| clear: both; | |
| } | |
| /* New shorter method */ |
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
| <h1>Super forms</h1> | |
| <p>This is a form which <strong>will</strong> work across multiple browsers.</p> | |
| <div class="serverValidation"> | |
| <p>Please check the listed fields below for errors.</p> | |
| <ol> | |
| <li><a href="#medium">Question label (Medium)</a></li> | |
| <li><a href="#selectMedium">Question label (selectMedium)</a></li> | |
| <li><a href="#radio1">Question label (Radio)</a></li> | |
| <li><a href="#textArea">Question label (textArea)</a></li> | |
| </ol> |
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
| <table summary="contains accessible tablular data"> | |
| <thead> | |
| <tr> | |
| <th scope="col">Column 1</th> | |
| <th scope="col">Column 2</th> | |
| <th scope="col">Column 3</th> | |
| </tr> | |
| </thead> | |
| <tfoot><tr><td colspan="3">End table</td></tr></tfoot> | |
| <tbody> |
NewerOlder