diff options
| author | Jacob Thornton <[email protected]> | 2011-08-21 19:56:43 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2011-08-21 19:56:43 -0700 |
| commit | f17b2633adb016ef58423c083d2a377368fc51c7 (patch) | |
| tree | 6ca41b49c1b992e822b2e4fdf50f4b425b69209f /docs | |
| parent | c3143b47294df75eb830fb9156f9eef8fbaa956b (diff) | |
| download | bootstrap-f17b2633adb016ef58423c083d2a377368fc51c7.tar.xz bootstrap-f17b2633adb016ef58423c083d2a377368fc51c7.zip | |
fix btn borders ie7/ie8
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/index.html b/docs/index.html index b9fffce97..686115684 100644 --- a/docs/index.html +++ b/docs/index.html @@ -843,8 +843,10 @@ <h3>Example buttons</h3> <p>Button styles can be applied to anything with the <code>.btn</code> applied. Typically you’ll want to apply these to only <code><a></code>, <code><button></code>, and select <code><input></code> elements. Here’s how it looks:</p> <div class="well" style="padding: 14px 19px;"> - <button type="submit" class="btn primary">Submit</button> - <button type="submit" class="btn">Cancel</button> + <form> + <button type="submit" class="btn primary">Submit</button> + <button type="submit" class="btn">Cancel</button> + </form> </div> <h3>Alternate sizes</h3> <p>Fancy larger or smaller buttons? Have at it!</p> @@ -866,8 +868,10 @@ </div> <h4>Buttons</h4> <div class="well"> - <button class="btn large primary disabled" disabled>Primary action</button> - <button class="btn large disabled" disabled>Action</button> + <form> + <button class="btn large primary disabled" disabled>Primary action</button> + <button class="btn large disabled" disabled>Action</button> + </form> </div> </div> </div> |
