mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
fix #10070 by resyncing fieldset disabled live example & example code
This commit is contained in:
parent
24f57bdf41
commit
4912f960f4
1 changed files with 2 additions and 2 deletions
4
css.html
4
css.html
|
@ -1802,7 +1802,7 @@ For example, <code><section></code> should be wrapped as inline.
|
||||||
<p>While Bootstrap will apply these styles in all browsers, Internet Explorer 9 and below don't actually support the <code>disabled</code> attribute on a <code><fieldset></code>. Use custom JavaScript to disable the fieldset in these browsers.</p>
|
<p>While Bootstrap will apply these styles in all browsers, Internet Explorer 9 and below don't actually support the <code>disabled</code> attribute on a <code><fieldset></code>. Use custom JavaScript to disable the fieldset in these browsers.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form class="bs-example">
|
<form class="bs-example" role="form">
|
||||||
<fieldset disabled>
|
<fieldset disabled>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="disabledTextInput">Disabled input</label>
|
<label for="disabledTextInput">Disabled input</label>
|
||||||
|
@ -1823,7 +1823,7 @@ For example, <code><section></code> should be wrapped as inline.
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
{% highlight html %}
|
{% highlight html %}
|
||||||
<form class="form-inline" role="form">
|
<form role="form">
|
||||||
<fieldset disabled>
|
<fieldset disabled>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="disabledTextInput">Disabled input</label>
|
<label for="disabledTextInput">Disabled input</label>
|
||||||
|
|
Loading…
Reference in a new issue