Thank you for contributing to our awesome tips.
-
One item per Pull Request.
-
Pull request should include a title which describes the tip, an optional short description, code and an optional link to the codepen.
Example:
You can use <fieldset>
element to group several controls as well as labels (<label>
) within a web form.
<form>
<fieldset>
<legend>Choose your favorite language</legend>
<input type="radio" id="javascript" name="language">
<label for="javascript">JavaScript</label><br/>
<input type="radio" id="python" name="language">
<label for="python">Python</label><br/>
<input type="radio" id="java" name="language">
<label for="java">Java</label>
</fieldset>
</form>
-
Don't forget to add an anchor link in the table of contents. The format of the link should be like this: -
[Base Element](#base-element)
. -
Don't open issues with new tips, open a PR instead.