diff --git a/docs/base-css.html b/docs/base-css.html index 584ce7d078..c1b13655da 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -1550,13 +1550,9 @@ For example, <code>section</code> should be wrapped as inline.
<a class="btn" href="">Link</a> -<button class="btn" type="submit"> - Button -</button> -<input class="btn" type="button" - value="Input"> -<input class="btn" type="submit" - value="Submit"> +<button class="btn" type="submit">Button</button> +<input class="btn" type="button" value="Input"> +<input class="btn" type="submit" value="Submit">
As a best practice, try to match the element for you context to ensure matching cross-browser rendering. If you have an input
, use an <input type="submit">
for your button.
<a class="btn" href="">{{_i}}Link{{/i}}</a> -<button class="btn" type="submit"> - {{_i}}Button{{/i}} -</button> -<input class="btn" type="button" - value="{{_i}}Input{{/i}}"> -<input class="btn" type="submit" - value="{{_i}}Submit{{/i}}"> +<button class="btn" type="submit">{{_i}}Button{{/i}}</button> +<input class="btn" type="button" value="{{_i}}Input{{/i}}"> +<input class="btn" type="submit" value="{{_i}}Submit{{/i}}">
{{_i}}As a best practice, try to match the element for you context to ensure matching cross-browser rendering. If you have an input
, use an <input type="submit">
for your button.{{/i}}